MCPcopy Create free account
hub / github.com/ExtendDB/extenddb / section

Function section

samples/sample_app.py:81–85  ·  view source on GitHub ↗

Print a section header.

(title: str)

Source from the content-addressed store, hash-verified

79 time.sleep(0.3)
80 raise TimeoutError(f"{table_name} did not become ACTIVE within {timeout}s")
81def section(title: str) -> None:
82 """Print a section header."""
83 print(f"\n{'='*60}")
84 print(f" {title}")
85 print(f"{'='*60}\n")
86def delete_table_safe(client, table_name: str) -> None:
87 """Delete a table, ignoring ResourceNotFoundException."""
88 try:

Callers 10

create_tablesFunction · 0.85
wait_for_tablesFunction · 0.85
load_dataFunction · 0.85
query_dataFunction · 0.85
update_dataFunction · 0.85
batch_operationsFunction · 0.85
transaction_operationsFunction · 0.85
delete_dataFunction · 0.85
drop_tablesFunction · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected