Skip to main content

Ephemeral SQL index over a local directory

Project description

dirsql (Python SDK)

Ephemeral SQL index over a local directory. dirsql watches a filesystem, ingests structured files into an in-memory SQLite database, and exposes a SQL query interface -- the filesystem is always the source of truth.

Documentation

Also available as dirsql on crates.io and dirsql on npm.

Installation

pip install dirsql

Requires Python >= 3.12. Ships as a native extension (Rust via PyO3); prebuilt binary wheels are provided for common platforms.

Quick start

DirSQL is async by default: the constructor returns immediately, scanning runs in a background thread, and you await db.ready() before querying. Each table is a (ddl, glob, extract) triple: the DDL defines the SQLite schema, the glob selects files (relative to the root), and extract turns a matched file into a list of row dicts. dirsql does not read file contents -- if extract needs the file body it reads path itself; return an empty list to skip a file.

import asyncio
import json
from dirsql import DirSQL, Table

async def main():
    db = DirSQL(
        "./my-blog",
        tables=[
            Table(
                ddl="CREATE TABLE posts (title TEXT, author TEXT)",
                glob="posts/*.json",
                extract=lambda path: [json.loads(open(path, encoding="utf-8").read())],
            ),
        ],
    )
    await db.ready()

    posts = await db.query("SELECT * FROM posts WHERE author = 'alice'")
    print(posts)

asyncio.run(main())

Multiple tables and joins

db = DirSQL(
    "./my-blog",
    tables=[
        Table(
            ddl="CREATE TABLE posts (title TEXT, author_id TEXT)",
            glob="posts/*.json",
            extract=lambda path: [json.loads(open(path, encoding="utf-8").read())],
        ),
        Table(
            ddl="CREATE TABLE authors (id TEXT, name TEXT)",
            glob="authors/*.json",
            extract=lambda path: [json.loads(open(path, encoding="utf-8").read())],
        ),
    ],
)
await db.ready()

results = await db.query("""
    SELECT posts.title, authors.name
    FROM posts JOIN authors ON posts.author_id = authors.id
""")

Ignoring files

Pass ignore patterns to skip files during scanning and watching:

db = DirSQL(
    "./my-blog",
    ignore=["**/drafts/**", "**/.git/**"],
    tables=[...],
)

Loading SQLite extensions

Pass extensions to load SQLite extension shared libraries onto the connection at startup (before any CREATE TABLE). Each entry is a dict with a path and an optional entrypoint init-symbol override:

db = DirSQL(
    "./my-blog",
    tables=[...],
    extensions=[
        {"path": "./ext/vec0.dylib", "entrypoint": "sqlite3_vec_init"},
        {"path": "./ext/myext.so"},  # entrypoint derived from the filename
    ],
)
await db.ready()

# The extension's functions are now callable in queries:
rows = await db.query("SELECT vec_version() AS v")

dirsql enables extension loading only while loading the configured libraries, then disables it again, so the SQL load_extension() function is never exposed to your queries. Programmatic entries load first, followed by any [[dirsql.extension]] entries declared in a config file. See the config reference.

Watching for changes

db.watch() returns an async iterator of row-level change events as files change on disk:

async for event in db.watch():
    print(f"{event.action} on {event.table}: {event.row}")
    if event.action == "error":
        print(f"  error: {event.error}")

Each event has .action ("insert", "update", "delete", or "error"), .table, .row (the new row, or the deleted row on delete), .old_row (the previous row, on update), .file_path, and .error (on error).

CLI

pip install dirsql also installs a dirsql console script that runs an HTTP server exposing the SDK over HTTP: POST /query for SQL and GET /events for a Server-Sent Events change stream. Run dirsql (or uvx dirsql) to start it. See the CLI reference.

License

MIT

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

dirsql-0.3.90.tar.gz (275.1 kB view details)

Uploaded Source

Built Distributions

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

dirsql-0.3.90-cp311-abi3-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.11+Windows x86-64

dirsql-0.3.90-cp311-abi3-manylinux_2_39_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.39+ x86-64

dirsql-0.3.90-cp311-abi3-manylinux_2_39_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.39+ ARM64

dirsql-0.3.90-cp311-abi3-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

dirsql-0.3.90-cp311-abi3-macosx_10_12_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.11+macOS 10.12+ x86-64

File details

Details for the file dirsql-0.3.90.tar.gz.

File metadata

  • Download URL: dirsql-0.3.90.tar.gz
  • Upload date:
  • Size: 275.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for dirsql-0.3.90.tar.gz
Algorithm Hash digest
SHA256 17c35b89d28a6fce015e584df00ebfffab582c85bf52a5086758d0949b65b2b1
MD5 9ce8c7036df42aae6e1b3b970787a840
BLAKE2b-256 0dd5e0d6b1e5b382a8b1ff149afdb6db8094e9938ca54c8c03ad62f1632fe111

See more details on using hashes here.

Provenance

The following attestation bundles were made for dirsql-0.3.90.tar.gz:

Publisher: release.yml on thekevinscott/dirsql

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dirsql-0.3.90-cp311-abi3-win_amd64.whl.

File metadata

  • Download URL: dirsql-0.3.90-cp311-abi3-win_amd64.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.11+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for dirsql-0.3.90-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 f423ec7cf5be9d1ec7e8553e854c9730078adb84b3e12f21472565bb01c0096b
MD5 dc830b5ac90c14807b49f61c9f452341
BLAKE2b-256 731786216946589a18152951eba9531e9ad2d5e3b39cb45737e8def94682407a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dirsql-0.3.90-cp311-abi3-win_amd64.whl:

Publisher: release.yml on thekevinscott/dirsql

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dirsql-0.3.90-cp311-abi3-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for dirsql-0.3.90-cp311-abi3-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 c44109c6378093f34b7706bfb9522d20c5d401751ce3690291a8f4900227fcd0
MD5 ab4c0078e1417e8c0b04a35527bfbddf
BLAKE2b-256 9c971f2735ed6db94b070155cf811a28c70c2b17df843ddf6581a39163dc77b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dirsql-0.3.90-cp311-abi3-manylinux_2_39_x86_64.whl:

Publisher: release.yml on thekevinscott/dirsql

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dirsql-0.3.90-cp311-abi3-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for dirsql-0.3.90-cp311-abi3-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 5a75f1977bbeb6d7efe17372622f3809f6a2e0a14dc8d3ccd7ae11e004354d69
MD5 2e80c36ad2dbe336396952f7db1368cd
BLAKE2b-256 bf24dea8fc050e6ca566125110270f43827467f09ae98515b9997840133899ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for dirsql-0.3.90-cp311-abi3-manylinux_2_39_aarch64.whl:

Publisher: release.yml on thekevinscott/dirsql

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dirsql-0.3.90-cp311-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dirsql-0.3.90-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3a8036a5b7ca64aa09a47c8b675c3acb97349c83c5baee8310bbc81ec790746
MD5 78d82ee04b8d05c360c211b1a7beb10f
BLAKE2b-256 5acb94a66ad6f5a3edb8a817897e17129abee1cddae7ca03bdfef1e40cd5ffb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for dirsql-0.3.90-cp311-abi3-macosx_11_0_arm64.whl:

Publisher: release.yml on thekevinscott/dirsql

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dirsql-0.3.90-cp311-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dirsql-0.3.90-cp311-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 38629cf0261e31f2f26895b8ebf51cc15ed19363fc2cd3937ec3b45ce57222c7
MD5 a7ff6cce20df589881c89f4bf527fb6e
BLAKE2b-256 750e816e370dafcd0146dbec51a233374bf29af01b48db85baafdbefd236fbd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for dirsql-0.3.90-cp311-abi3-macosx_10_12_x86_64.whl:

Publisher: release.yml on thekevinscott/dirsql

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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