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.0rc19.tar.gz (2.8 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.0rc19-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.4 MB view details)

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

pyturso-0.7.0rc19-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (25.9 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ARM64

pyturso-0.7.0rc19-cp310-abi3-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

pyturso-0.7.0rc19-cp310-abi3-macosx_10_12_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.10+macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pyturso-0.7.0rc19.tar.gz
Algorithm Hash digest
SHA256 213c2adde05ab64d8f486b4f64990bbcca199f0e6bd2ec91e8eb3b2a667ac80c
MD5 67d12ec38ced344e23b0f635b7fd6e19
BLAKE2b-256 efd8a3e7b019761ab2adcdfe0a02bcbc83aec3195999f563734847bbad156fee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyturso-0.7.0rc19-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea572e4bfbd7a0970bb5e6661787bc2e15dac9f66358f89b5bf3b6cef9fcd5f7
MD5 e046fa0aba6f7dae11cb48a7b2c781a7
BLAKE2b-256 aa3dfe4b10051e681d221bb351d81903b0ed13e207cd0a56f2b7ffca714ede45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyturso-0.7.0rc19-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 151a6e6c8e8ef7914cbb1b50c62612c21ccb4ed28d98eda6e873aa7aa2eea448
MD5 0469867700785bcaaa14591fc29ebcf5
BLAKE2b-256 51297617c11e51eebc53d8ae3107b88ed6b2919b719c2c543fdc08e76be0f0b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyturso-0.7.0rc19-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcd7dff78aa4c1217e978c493f17b6c83bce955f4c298271c2915a2fc6825546
MD5 d3258799df225f9fae3f32e7bd3ecd43
BLAKE2b-256 28aa099d750054802d0bfb9e92f22e3cd0a71f02bc417b4687066e904377537b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyturso-0.7.0rc19-cp310-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e4f6adb1354724cb7ccfbd22d30779ecc79f57e34d64cb355ce60aaa897ac08
MD5 1f9ed68b0e66a02dc0ff7f2591d28c56
BLAKE2b-256 cd55067ac881055e81c8013f569fce0f40a8af755d19d7812a48ebf1c727ca2d

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