8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cc4c0b commit fe44b92Copy full SHA for fe44b92
samples/browse_table_data.py
@@ -45,9 +45,9 @@ def browse_table_data(table_id: str) -> None:
45
46
rows = list(rows_iter)
47
print("Downloaded {} rows from table {}".format(len(rows), table_id))
48
-
+
49
# Print row data in tabular format.
50
- rows_iter = client.list_rows(table, max_results=10)
+ rows_iter = client.list_rows(table_id, max_results=10)
51
format_string = "{!s:<16} " * len(rows_iter.schema)
52
field_names = [field.name for field in rows_iter.schema]
53
print(format_string.format(*field_names)) # Prints column headers.
0 commit comments