This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from google.cloud import bigtable | |
from google.cloud.bigtable import column_family | |
from google.cloud.bigtable import row_filters | |
client = bigtable.Client(project=project_id, admin=True) | |
instance = client.instance(instance_id) | |
table = instance.table(table_id) | |
def streamToDict(partial): |