Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Atoti Python SDK
>>> table = session.create_table( ... "Example", ... data_types={"Product": "String", "Quantity": "int"}, ... ) >>> table.row_count 0 >>> table += ("Book", 3) >>> table.row_count 1