After creating an :class:`~google.cloud.spanner_v1.database.Database`, you can interact with individual tables for that instance.
To iterate over all existing tables for an database, use its :meth:`~google.cloud.spanner_v1.database.Database.list_tables` method:
for table in database.list_tables():
# `table` is a `Table` object.
This method yields :class:`~google.cloud.spanner_v1.table.Table` objects.
A :class:`~google.cloud.spanner_v1.table.Table` object can be created with the :meth:`~google.cloud.spanner_v1.database.Database.table` factory method:
table = database.table("my_table_id")
if table.exists():
print("Table with ID 'my_table' exists.")
else:
print("Table with ID 'my_table' does not exist."
Use the :attr:`~google.cloud.spanner_v1.table.Table.schema` property to inspect the columns of a table as a list of :class:`~google.cloud.spanner_v1.types.StructType.Field` objects.
for field in table.schema
# `field` is a `Field` object.