Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

Turso Database for Python

PyPI

Chat with other users of Turso on Discord


About

Turso Database runs in production today at multiple organizations. It has not yet reached 1.0, so as with any database we recommend keeping backups — see the FAQ for where the project stands.

Features

  • SQLite compatible: SQLite query language and file format support (status).
  • In-process: No network overhead, runs directly in your Python process
  • Cross-platform: Supports Linux, macOS, Windows
  • Remote partial sync: Bootstrap from a remote database, pull remote changes, and push local changes when online — all while enjoying a fully operational database offline.
  • Asyncio support: Built-in integration with asyncio to ensure queries won’t block your event loop

Installation

uv pip install pyturso

Database driver

A minimal DB‑API 2.0 example using an in‑memory database:

import turso

# Standard DB-API usage
conn = turso.connect(":memory:")
cur = conn.cursor()

cur.execute("CREATE TABLE users (id INTEGER PRIMARY KEY, username TEXT)")
cur.execute("INSERT INTO users VALUES (1, 'alice'), (2, 'bob')")

cur.execute("SELECT * FROM users ORDER BY id")
rows = cur.fetchall()
print(rows)  # [(1, 'alice'), (2, 'bob')]

conn.close()

Database driver (asyncio)

Non-blocking access with asyncio:

import asyncio
import turso.aio

async def main():
    # Connect and use as an async context manager
    async with turso.aio.connect(":memory:") as conn:
        # Executes multiple statements
        await conn.executescript("""
            CREATE TABLE t (id INTEGER PRIMARY KEY, name TEXT);
            INSERT INTO t(name) VALUES ('alice'), ('bob');
        """)

        # Use a cursor for parameterized queries
        cur = conn.cursor()
        await cur.execute("SELECT COUNT(*) FROM t WHERE name LIKE ?", ("a%",))
        count = (await cur.fetchone())[0]
        print(count)  # 1

        # JSON and generate_series also available
        cur = conn.cursor()
        await cur.execute("SELECT SUM(value) FROM generate_series(1, 10)")
        print((await cur.fetchone())[0])  # 55

asyncio.run(main())

Synchronization driver

Use a remote Turso database while working locally. You can bootstrap local state from the remote, pull remote changes, and push local commits.

Note: You need a Turso remote URL. See the Turso docs for provisioning and authentication.

import turso.sync

# Connect a local database to a remote Turso database
conn = turso.sync.connect(
    ":memory:",                          # local db path (or a file path)
    remote_url="https://<db>.<region>.turso.io"  # your remote URL
)

# Read data (fetched from remote if not present locally yet)
rows = conn.execute("SELECT * FROM t").fetchall()
print(rows)

# Pull new changes from remote into local
changed = conn.pull()
print("Pulled:", changed)  # True if there were new remote changes

# Make local changes
conn.execute("INSERT INTO t VALUES ('push works')")
conn.commit()

# Push local commits to remote
conn.push()

# Optional: inspect and manage sync state
stats = conn.stats()
print("Network received (bytes):", stats.network_received_bytes)
conn.checkpoint()  # compact local WAL after many writes

conn.close()

Partial bootstrap to reduce initial network cost:

import turso.sync

conn = turso.sync.connect(
    "local.db",
    remote_url="https://<db>.<region>.turso.io",
    # fetch first 128 KiB upfront
    partial_sync_experimental=turso.sync.PartialSyncOpts(
      bootstrap_strategy=turso.sync.PartialSyncPrefixBootstrap(length=128 * 1024),
    ),
)

Synchronization driver (asyncio)

The same sync primitives, but fully async:

import asyncio

async def main():
    conn = await turso.aio.sync.connect(":memory:", remote_url="https://<db>.<region>.turso.io")

    # Read data
    rows = await (await conn.execute("SELECT * FROM t")).fetchall()
    print(rows)

    # Pull and push
    await conn.pull()
    await conn.execute("INSERT INTO t VALUES ('hello from asyncio')")
    await conn.commit()
    await conn.push()

    # Stats and maintenance
    stats = await conn.stats()
    print("Main WAL size:", stats.main_wal_size)
    await conn.checkpoint()

    await conn.close()

asyncio.run(main())

License

This project is licensed under the MIT license.

Support

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyturso-0.7.2rc5.tar.gz (2.9 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pyturso-0.7.2rc5-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.5 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ x86-64

pyturso-0.7.2rc5-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (26.0 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ARM64

pyturso-0.7.2rc5-cp310-abi3-macosx_11_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

pyturso-0.7.2rc5-cp310-abi3-macosx_10_12_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.10+macOS 10.12+ x86-64

File details

Details for the file pyturso-0.7.2rc5.tar.gz.

File metadata

  • Download URL: pyturso-0.7.2rc5.tar.gz
  • Upload date:
  • Size: 2.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for pyturso-0.7.2rc5.tar.gz
Algorithm Hash digest
SHA256 6e97fd07b46fd4c0213814f7ff8d3543ea2083f097ba84db9e39105889f965dc
MD5 9d8c7b3fe76eb9d5c197e604c4a4d29b
BLAKE2b-256 733932690154c89e8fe2e6f6d6b03cc11f694efe1e6915ba2f50cc1ddb8b358a

See more details on using hashes here.

File details

Details for the file pyturso-0.7.2rc5-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyturso-0.7.2rc5-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35e461c6badec90bc5902a684a6af780c0e49659750aa991e7133b53dcc3be9d
MD5 c37605953fc9a202e0971ab858d56c66
BLAKE2b-256 ecdbad73be379bf0dde47dae3c753e3b9b1fd452741b1848d10464f3ed3afb6e

See more details on using hashes here.

File details

Details for the file pyturso-0.7.2rc5-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyturso-0.7.2rc5-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4eb88293d1d349f24319b92221edbfb00c6151d371b875521aa69b5ec861157e
MD5 37863c666a9265cd957aaf230c4ea6f2
BLAKE2b-256 e867aa42417f9a2ad6a28fc1f91cfa5e02150bd273f2a598027a668b882f16db

See more details on using hashes here.

File details

Details for the file pyturso-0.7.2rc5-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyturso-0.7.2rc5-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d269db3edce9eb24df1e7cc4a977c824ef77b024d84d1da7e78b71d32ff35d6a
MD5 449085434b3ed847a960929193afc906
BLAKE2b-256 ab02709417fb2bc68acdefa89f9d2cf7c12e2abb1affdd9d4bd9a8fa83972167

See more details on using hashes here.

File details

Details for the file pyturso-0.7.2rc5-cp310-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyturso-0.7.2rc5-cp310-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 555922cff27398d3e41f7d8c19c9cb98cec59b310d72656032b59bc37db19bf1
MD5 4851f6ff56f8a3766429d2ebc1ed75e0
BLAKE2b-256 0bb367e31b32c8613f79a67e769f1f727fc537b8895ab802b76329bd8d7d4e28

See more details on using hashes here.

Release history Release notifications | RSS feed

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page