Skip to content

Table

List tables

Get the active table.

base.list_tables()

Example

tables = base.list_tables()

Get a table by name

Get the active table.

base.get_table_by_name(table_name)

Example

base.get_table_by_name('Table1')

Add table

Add a table into a base.

base.add_table(table_name, lang='en', columns=[]);

Example

base.add_table('Investigation', lang='zh-cn')

Rename table

Add a table into a base.

base.rename_table(table_name, new_table_name)

Example

base.rename_table('Table1', 'Table11')

Delete table

Add a table into a base.

base.delete_table(table_name)

Example

base.delete_table('Table1')