in python/thrift/client.py [0:0]
def get_row(self, table, row_key):
""" Gets a row in Hbase based on table name and row key.
:param table: The name of the table in Hbase
:param row_key: The row key for the row being requested
:return: The entire row object including all of its columns
"""
try:
row = self.client.getRow(table, row_key)
return row
except Thrift.TException, tx:
print '%s' % tx.message