Fully type-hinted Turso Platform API wrapper for Python.
Documentation: https://mauricekuenicke.github.io/tursopy/
Source Code: https://github.com/MauriceKuenicke/tursopy
This project is in early development and currently not safe for use in a production environment. Use at your own risk.
pip install tursopy
from tursopy import TursoClient
client = TursoClient()
new_api_token = client.create_platform_api_token(name="my-test-token") # Create a new platform token
client.revoke_token(name=new_api_token.name) # Revoke it again
# You can also create a new database
new_db = client.db.create_database(org_name="my-org", name="delete-me-later")
print("New database:", new_db)
# List available databases in your organization or for your user
print(client.db.list_databases(org_name="my-org"))
client.db.delete_database(org_name="my-org", db_name=new_db.Name) # Delete your database again
TursoPy assumes a platform api token to be available when running the first time. Please refer to the official documentation to find out how to generate your token.