Skip to main content

Turso is a work-in-progress, in-process OLTP database management system, compatible with SQLite.

Project description

Turso Database for Python

PyPI

Chat with other users of Turso on Discord


About

⚠️ Warning: This software is in BETA. It may still contain bugs and unexpected behavior. Use caution with production data and ensure you have backups.

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

Project details


Release history Release notifications | RSS feed

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.0rc13.tar.gz (2.7 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.0rc13-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25.5 MB view details)

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

pyturso-0.7.0rc13-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (25.0 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ARM64

pyturso-0.7.0rc13-cp310-abi3-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

pyturso-0.7.0rc13-cp310-abi3-macosx_10_12_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.10+macOS 10.12+ x86-64

File details

Details for the file pyturso-0.7.0rc13.tar.gz.

File metadata

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

File hashes

Hashes for pyturso-0.7.0rc13.tar.gz
Algorithm Hash digest
SHA256 fd91870fa1f5ca751a700c9940a70f48cb080537bdfb1633486601632d6edd23
MD5 2534e3f4b0ca23ee0a5f1d2e8a596b9a
BLAKE2b-256 c032800a16b1cde53afad8e91c39a861ede7480037eb28eb883e81578bfb67a6

See more details on using hashes here.

File details

Details for the file pyturso-0.7.0rc13-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyturso-0.7.0rc13-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3507c22c44934e6aff643856fd7de5ed44254761a123e73126fa09bd79446cc2
MD5 a80f872509c63be030b84a1985dd63fc
BLAKE2b-256 1e5346755ea76cac87fe392f863e6b2a34d6f90c0a10ed21dafe581e3f7898d2

See more details on using hashes here.

File details

Details for the file pyturso-0.7.0rc13-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyturso-0.7.0rc13-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc1ebd8b382c0759462f55bd5e25ce77d5446d034ab20c0795fd085f935cfa8b
MD5 71e8d4f2d06a22e1260819d606b7829b
BLAKE2b-256 5e77e6f38e37ad9c7c715430f6914967b368226e6f90df465357abbf783efa66

See more details on using hashes here.

File details

Details for the file pyturso-0.7.0rc13-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyturso-0.7.0rc13-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 80d32f086658c15208229a9655f73cb5c1a9f99e7f751d3a276a45d12803a59c
MD5 d2b39441f3f7abce67ea103cc79be41c
BLAKE2b-256 94d54bc83157c68309b30e760ceb2ad16fc566d8d5efd5f89f17ee30da42e67d

See more details on using hashes here.

File details

Details for the file pyturso-0.7.0rc13-cp310-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyturso-0.7.0rc13-cp310-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3670c27799df71529f5969be0765e7011a3344ae397bedc617d30bb4694de684
MD5 aacfb229a573af786885dbd14755e02f
BLAKE2b-256 e072d5257187d962f8c663338e8606039f0d0f84819405feb087d1517598705d

See more details on using hashes here.

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