Skip to main content

SQL Experiments in Python

Project description

SQLSpec

PyPI Python License Docs

SQLSpec is a SQL execution layer for Python. You write the SQL -- as strings, through a builder API, or loaded from files -- and SQLSpec handles connections, parameter binding, SQL injection prevention, dialect translation, and mapping results back to typed Python objects. It uses sqlglot under the hood to parse, validate, and optimize your queries before they hit the database.

It works with PostgreSQL (asyncpg, psycopg, psqlpy), SQLite (sqlite3, aiosqlite), DuckDB, MySQL (asyncmy, mysql-connector, pymysql), Oracle (oracledb), CockroachDB, BigQuery, Spanner, and anything ADBC-compatible. Sync or async, same API. It also includes a built-in storage layer, native and bridged Arrow support for all drivers, and integrations for Litestar, FastAPI, Flask, Sanic, and Starlette.

Quick Start

pip install sqlspec
from pydantic import BaseModel
from sqlspec import SQLSpec
from sqlspec.adapters.sqlite import SqliteConfig

class Greeting(BaseModel):
    message: str

spec = SQLSpec()
db = spec.add_config(SqliteConfig(connection_config={"database": ":memory:"}))

with spec.provide_session(db) as session:
    greeting = session.select_one(
        "SELECT 'Hello, SQLSpec!' AS message",
        schema_type=Greeting,
    )
    print(greeting.message)  # Output: Hello, SQLSpec!

Write SQL, define a schema, get typed objects back. Or use the query builder -- they're interchangeable:

from sqlspec import sql

# Builder API -- same driver, same result mapping
users = session.select(
    sql.select("id", "name", "email")
       .from_("users")
       .where("active = :active")
       .order_by("name")
       .limit(10),
    {"active": True},
    schema_type=User,
)

Features

  • Connection pooling -- sync and async adapters with a unified API across all supported drivers
  • Parameter binding and dialect translation -- powered by sqlglot, with a fluent query builder and .sql file loader
  • Result mapping -- map rows to Pydantic, msgspec, attrs, or dataclass models, or export to Arrow tables for pandas and Polars
  • Storage layer -- read and write Arrow tables to local files, fsspec, or object stores
  • Framework integrations -- Litestar plugin with DI, Starlette/FastAPI/Sanic middleware, Flask extension
  • Observability -- OpenTelemetry and Prometheus instrumentation, structured logging with correlation IDs
  • Event channels -- LISTEN/NOTIFY, Oracle AQ, and a portable polling fallback
  • Migrations -- schema versioning CLI built on Alembic

Documentation

Playground

Want to try it without installing anything? The interactive playground runs SQLSpec in your browser with a sandboxed Python runtime.

Reference Applications

  • PostgreSQL + Vertex AI Demo -- Vector search with pgvector and real-time chat using Litestar and Google ADK. Shows connection pooling, migrations, type-safe result mapping, vector embeddings, and response caching.
  • Oracle + Vertex AI Demo -- Oracle 23ai vector search with semantic similarity using HNSW indexes. Demonstrates NumPy array conversion, large object handling, and real-time performance metrics.

Contributing

Contributions are welcome -- whether that's bug reports, new adapter ideas, or pull requests. Take a look at the contributor guide to get started.

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

sqlspec-0.47.0.tar.gz (3.3 MB view details)

Uploaded Source

Built Distributions

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

sqlspec-0.47.0-py3-none-any.whl (1.1 MB view details)

Uploaded Python 3

sqlspec-0.47.0-cp314-cp314-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.14Windows x86-64

sqlspec-0.47.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sqlspec-0.47.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

sqlspec-0.47.0-cp314-cp314-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sqlspec-0.47.0-cp313-cp313-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.13Windows x86-64

sqlspec-0.47.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sqlspec-0.47.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

sqlspec-0.47.0-cp313-cp313-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sqlspec-0.47.0-cp312-cp312-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.12Windows x86-64

sqlspec-0.47.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sqlspec-0.47.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

sqlspec-0.47.0-cp312-cp312-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sqlspec-0.47.0-cp311-cp311-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.11Windows x86-64

sqlspec-0.47.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sqlspec-0.47.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

sqlspec-0.47.0-cp311-cp311-macosx_11_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sqlspec-0.47.0-cp310-cp310-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.10Windows x86-64

sqlspec-0.47.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sqlspec-0.47.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

sqlspec-0.47.0-cp310-cp310-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file sqlspec-0.47.0.tar.gz.

File metadata

  • Download URL: sqlspec-0.47.0.tar.gz
  • Upload date:
  • Size: 3.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sqlspec-0.47.0.tar.gz
Algorithm Hash digest
SHA256 f188817f226d5d1f857a30ec32c3b556e573d4bb12dca80351e1bed412707936
MD5 90950e97265e40afe16b5182c5c3f751
BLAKE2b-256 697302953849a48ae7c12ac4a8abf87db9ecf106789a4c00bdc40377064896b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.47.0.tar.gz:

Publisher: publish.yml on litestar-org/sqlspec

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

File details

Details for the file sqlspec-0.47.0-py3-none-any.whl.

File metadata

  • Download URL: sqlspec-0.47.0-py3-none-any.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sqlspec-0.47.0-py3-none-any.whl
Algorithm Hash digest
SHA256 780075e4a694e90cb82c3830c424dfd50652758768a41015e571e4757093acf3
MD5 3fd59e2e84225fbbe4ea908e659ac9ab
BLAKE2b-256 377ee65166ef2af818b18223f771ece2f39c9df95e1a43265fe9dd0cca6e2292

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.47.0-py3-none-any.whl:

Publisher: publish.yml on litestar-org/sqlspec

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

File details

Details for the file sqlspec-0.47.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: sqlspec-0.47.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 5.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sqlspec-0.47.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 728b1fd2636cb5be8173b6617c44777204f382be4afefc0d90d8e9cfb6e319c8
MD5 67fc3ba63f576604973d348b446f7fa7
BLAKE2b-256 0afa8192bcb7234f7df513071ece7591ea9b94dcfbd65dfaa192ff1d6b705ad0

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.47.0-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on litestar-org/sqlspec

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

File details

Details for the file sqlspec-0.47.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlspec-0.47.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5190df2376d50043dba7d6c74103d79d22dff48847ff9dbe8ddd5a733aa199b1
MD5 cd6d0ae7bcd500275db5c84984a611d1
BLAKE2b-256 383351e3e2726ea52f81f9123480143a3767a368a48d38e4d38c69f3adbd0d8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.47.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on litestar-org/sqlspec

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

File details

Details for the file sqlspec-0.47.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for sqlspec-0.47.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 17c1db65fdb9fdbdd507dc6eb8e1272a546ac41d5c9353032cbada5775e46c22
MD5 2f72ed2121bbe823db85646b8419d157
BLAKE2b-256 00f8c693ba73baa3237d18ef3ddd0906cdc54480168e48789f5ca618d32a86e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.47.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish.yml on litestar-org/sqlspec

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

File details

Details for the file sqlspec-0.47.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlspec-0.47.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc9ee0f3d772f0840cd2aa6f9e0cd0700c2476ba44330584d8561d6ceae0c5aa
MD5 a527425e50d3a55c3dd67f5eed4c1c40
BLAKE2b-256 1e2dd04fd26ed705ab7f05139df9992ea483eac4338d836394c5d5fe16bafd59

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.47.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on litestar-org/sqlspec

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

File details

Details for the file sqlspec-0.47.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: sqlspec-0.47.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sqlspec-0.47.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 27597b530ac691f341bef581d421acf69656d540ff27bac87afc30d5a90430f0
MD5 979680b72c2558dc0ed6191b12861434
BLAKE2b-256 80ee9c1db1334487ab6813634f9d48fe528d7468226428c9d13a736a05a9cd3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.47.0-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on litestar-org/sqlspec

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

File details

Details for the file sqlspec-0.47.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlspec-0.47.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9368cbc149716f72a95386e523e95c161fd29dddc2a1a5e1a5e274465065643b
MD5 395f8ef48515a35da80aad41c37bf8f9
BLAKE2b-256 6f28acfea24326bb6c4b1d3522ff78697a85e31f790302da2f19b6d88e87112f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.47.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on litestar-org/sqlspec

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

File details

Details for the file sqlspec-0.47.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for sqlspec-0.47.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 bc089b8083009830afc11d1606de0045bd5cd2dd5ee372540c570427086b00c4
MD5 adaf8ed469bca54f80116392a4828795
BLAKE2b-256 2d5bf49b126fcdb78b34fe2b8f5d9a03b2f0994ff5c257b9171a9fd5e16068cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.47.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish.yml on litestar-org/sqlspec

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

File details

Details for the file sqlspec-0.47.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlspec-0.47.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07519b5445f583bb4357fe9e033a52ac739295b2d7988d91664afb95928be541
MD5 37b59cea9fc7571d08d3adf9bc59a9c5
BLAKE2b-256 9802029467f05ac1d9f5bb15c0e5c293b724394b0b2c16e422c7058f61b51499

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.47.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on litestar-org/sqlspec

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

File details

Details for the file sqlspec-0.47.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: sqlspec-0.47.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sqlspec-0.47.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 640bb63c102e2b58c58eb50df6902bc4309431c3b7873eebeca1a51545f09063
MD5 da7c7a7b5c3d65bcf461149877060fd6
BLAKE2b-256 68c594f20e9c86b53ab16c5ed6d62cf62c99b39fbb916c68e45df55da3857674

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.47.0-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on litestar-org/sqlspec

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

File details

Details for the file sqlspec-0.47.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlspec-0.47.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 402f5691f8a52be66993e56dc741782800f5cbd45820c88b8fcc549352dd2bfc
MD5 f568f22f66f4dc72a12238b313083bc8
BLAKE2b-256 ebff06a0370496a842cf2072dd758554d64f875ab82752c3e4a8f9fc54198280

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.47.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on litestar-org/sqlspec

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

File details

Details for the file sqlspec-0.47.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for sqlspec-0.47.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 256081233ea86fb086abd7cc39be5e9a397e3bba7fcdd74010dfa52c5465d202
MD5 cde22250aca3623229f60ace1ccfe4fb
BLAKE2b-256 ea1eadd077b706140ceb83f7a5d5b0dcbe8a5d888bf8001f41f3819b28379bbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.47.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish.yml on litestar-org/sqlspec

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

File details

Details for the file sqlspec-0.47.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlspec-0.47.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9cac9693c2154a6150303eeef0707492aeb47a370b1e2accf3434cd7e2925f5
MD5 c2550422f01950f98de0ffabb91017f7
BLAKE2b-256 6874f7ec72a66f0be226477948ee34885adaf7e7ba69ff203c9563ac75faf342

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.47.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on litestar-org/sqlspec

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

File details

Details for the file sqlspec-0.47.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: sqlspec-0.47.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.9 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 sqlspec-0.47.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 140be6c495d8a5e82d98def593883dd1436afccc9b23aedba194405db47ac702
MD5 9b19772e46e41f35b10a49d829986f7a
BLAKE2b-256 931badfb3c7d2bc4d027f0549a9489601a2296815cb01a4d050899c5ee72c2a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.47.0-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on litestar-org/sqlspec

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

File details

Details for the file sqlspec-0.47.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlspec-0.47.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 764a1a4ad3dc435e444795c34c4cefb70750721ac2d6a8279f02d0c5944b51af
MD5 47ccdd48ac76ea2f14ef0e99b4c8ce7d
BLAKE2b-256 ca658824db72c9345a1f5365d1337cf4a1ae51ff755ce88a95caf7b4c783cb4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.47.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on litestar-org/sqlspec

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

File details

Details for the file sqlspec-0.47.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for sqlspec-0.47.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1e76659fd609e5516d1ec7a3360c1313bc0a01a153f1527682009ad6d9c6263d
MD5 f968bc697405eed71ffcc3b28bce5d8c
BLAKE2b-256 24f99f545f15d2df965edb873121307526a1c87462042e64df14800572ea46eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.47.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish.yml on litestar-org/sqlspec

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

File details

Details for the file sqlspec-0.47.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlspec-0.47.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c6dc54b353398c4280243123e5d79847156bc80df2757a65dffdb7aa9c63186
MD5 1e60713e5cd5753f5cee86d4d9fdd6f1
BLAKE2b-256 8e73c1e2e2319fb5fcd250c7d5fe8d0d2639578f891efb73311820f8c0e0f76c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.47.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on litestar-org/sqlspec

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

File details

Details for the file sqlspec-0.47.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: sqlspec-0.47.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sqlspec-0.47.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c628a00ec2bf2d757664022b370e944cc157dbd757eb06fdea33a335af51e569
MD5 c4beb9d9546242e1212de071fce57ecb
BLAKE2b-256 e0075110dffc91a8e8a0c52db1e4c5436b8b9eb732bbebde077cd3d292248cfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.47.0-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on litestar-org/sqlspec

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

File details

Details for the file sqlspec-0.47.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlspec-0.47.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ba4d9c3de20956949aceb0f0cac7f3944e1109a848feedc6f0e31e3507b28ae
MD5 4757230d0d6d874bc06e9563744cf328
BLAKE2b-256 c1614114939898ba07f34585df877d9dae4f1e6ee9aa7552cd75838d9d48abed

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.47.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on litestar-org/sqlspec

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

File details

Details for the file sqlspec-0.47.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for sqlspec-0.47.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b0fb232500fe6153f87f73929cfe5dc6aed29434a90a901a5cd62c203a8131c7
MD5 ebca075e90590644c696b0cb0a766320
BLAKE2b-256 e8f19c3f69b8c607d0360395e6567c2c323448fade6c2606fe00f78a325d7fcf

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.47.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish.yml on litestar-org/sqlspec

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

File details

Details for the file sqlspec-0.47.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlspec-0.47.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1e7c3fed88aeb6db6f4d2356215d2df1237e4ac0acf669f552cce824c23db4f
MD5 4da0525b1a7d11678acb2593f239495b
BLAKE2b-256 6817be1634a71fa516664040beda2cb0cb108be794ef2baf7a95d27f2ab4cdef

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.47.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on litestar-org/sqlspec

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