Skip to main content

Documentation Index

Fetch the complete documentation index at: https://ahen.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

1

Search data in the table

You can search data in the table assuming there is already data in the table and Skypydb will return the data.
Python
# Access your tables
success_table = tables["success"]
warning_table = tables["warning"]
error_table = tables["error"]

# Search results by filter
user_success_logs = success_table.search(
    user_id="user123"
)

if not user_success_logs:
    print("No results found.")
else:
    for user_success_log in user_success_logs:
        print(user_success_log)