Skip to main content

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, aiomysql, mysql-connector, pymysql), SQL Server (mssql-python, pymssql, arrow-odbc), Oracle (oracledb), CockroachDB, BigQuery, Spanner, and supported ADBC backends including Snowflake, Flight SQL, and GizmoSQL. Sync or async, same API. It also includes a built-in storage layer, Arrow export through native paths or conversion fallbacks, storage-bridge bulk ingest for adapters with native ingest support, and integrations for Litestar, FastAPI, Flask, Sanic, and Starlette.

Quick Start

pip install sqlspec
from dataclasses import dataclass

from sqlspec import SQLSpec
from sqlspec.adapters.sqlite import SqliteConfig

@dataclass
class Greeting:
    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

  • Session lifecycle -- sync and async sessions with pooling where the adapter supports it
  • 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
  • Google ADK -- SQLSpec-backed session, event, memory, and artifact services
  • Observability -- OpenTelemetry and Prometheus instrumentation, structured logging with correlation IDs
  • Event channels -- LISTEN/NOTIFY, Oracle AQ/TxEventQ, and durable table-backed queues with polling fallback
  • Migrations -- native schema migration CLI backed by SQLSpec's SQL file loader

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

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.54.0.tar.gz (3.6 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.54.0-py3-none-any.whl (1.3 MB view details)

Uploaded Python 3

sqlspec-0.54.0-cp314-cp314-win_amd64.whl (6.2 MB view details)

Uploaded CPython 3.14Windows x86-64

sqlspec-0.54.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.7 MB view details)

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

sqlspec-0.54.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (8.3 MB view details)

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

sqlspec-0.54.0-cp314-cp314-macosx_11_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sqlspec-0.54.0-cp313-cp313-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.13Windows x86-64

sqlspec-0.54.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.7 MB view details)

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

sqlspec-0.54.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (8.3 MB view details)

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

sqlspec-0.54.0-cp313-cp313-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sqlspec-0.54.0-cp312-cp312-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.12Windows x86-64

sqlspec-0.54.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.7 MB view details)

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

sqlspec-0.54.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (8.3 MB view details)

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

sqlspec-0.54.0-cp312-cp312-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sqlspec-0.54.0-cp311-cp311-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.11Windows x86-64

sqlspec-0.54.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.6 MB view details)

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

sqlspec-0.54.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (8.1 MB view details)

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

sqlspec-0.54.0-cp311-cp311-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sqlspec-0.54.0-cp310-cp310-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.10Windows x86-64

sqlspec-0.54.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.6 MB view details)

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

sqlspec-0.54.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (8.2 MB view details)

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

sqlspec-0.54.0-cp310-cp310-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for sqlspec-0.54.0.tar.gz
Algorithm Hash digest
SHA256 fc13eaf5b2ed1c467b722a4b6fa1ed63ed9e18a00ec30b545bfa8c4e156d7723
MD5 6554233f1b075c5bf72fca42e1378403
BLAKE2b-256 e92452958e158e8c82d720eb2abfc5df18040ea58e396b1c29dbe63ca9b3d8ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.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.54.0-py3-none-any.whl.

File metadata

  • Download URL: sqlspec-0.54.0-py3-none-any.whl
  • Upload date:
  • Size: 1.3 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.54.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e2651cacc7972ee59375cdb097803d4574efabee44f8915d566146b58f079614
MD5 30e76302e12e2e6d4b6ff093ab25b9f1
BLAKE2b-256 f4843bf5801813b943da45ce8b14820ef104916f8712e09f765c562a8b5dc605

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.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.54.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: sqlspec-0.54.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 6.2 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.54.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6ca295842f5f5b4fb6f8084f106372cba5b4bd5d4f4562d1899ed3a2f4469563
MD5 0908dd7b31ee3f4fbc02fe64ee32935c
BLAKE2b-256 75ab26ead437e853912bfd0bec287b09a6df9077c3579325249316c43d9acdc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.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.54.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlspec-0.54.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e2487449d2b6cb962037c9fa52223db33845178bc799fa5bc60ad88e543b5c4b
MD5 2e68bb8c15490a5c2a4a1bb7e3aa63de
BLAKE2b-256 82bcbecca2b60aefb95c94c7b2849016c93e43379155d5e2b3648e786f53e17f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.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.54.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.54.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 efd72ba53b6aaebb2b59eb21b88d599ad7aea84fa7df39ca261bb9c47a9ace7b
MD5 4687f74df68036e2f7178511ce499482
BLAKE2b-256 c540cc6ec218aed18ab26fa17aeea5d89d4ef7a3ab2e0f059084f4f4dd6129b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.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.54.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlspec-0.54.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40d0d18fc357864b56ddfbcd8a5036b605894f8fe636f5122c1562883f7837f2
MD5 8417b8959acb114354019ad8ffb96f49
BLAKE2b-256 10d56f16d30a04d70ff567dfef3e3e036d6acec966ed01d7221ba06dc4bfc802

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.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.54.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: sqlspec-0.54.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 6.1 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.54.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 beffeb52dbb50d9d812eada87cddd6d7c678a2c4e20ca747ffe4dee7ca342808
MD5 870434191915afa1b1b4016b1809ced6
BLAKE2b-256 8e7f30a7c84aa0627a6c3bb0a2c78ac02ef322ef58af19b26e2dbc039b266c6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.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.54.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlspec-0.54.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 82f9dbbae500ded03254adad56ece8d20da8cbb91ba561fd1ed43f6ad20397f9
MD5 3f7312aa72faaa48d1ab840eb19ab4f4
BLAKE2b-256 c76d262f894eda006b1f1b78653cbe0fd87c3cd9684e380a73e9b99ddda83651

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.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.54.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.54.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 22a9e6a4ee9f6227ecd28aeedbe59755b2b931cf50623c8582b852d16006ccc9
MD5 6aacd1f99b6a59af24737d94bdbc63ca
BLAKE2b-256 1d126709af4751653d31adbb795d561205e140354691cb800d2bb9f7d9606497

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.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.54.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlspec-0.54.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf0d6bee119b4dbcf1375a24ebca3b59c0cef9fbe14bf4d220c761767736d733
MD5 5c821411756a252bc3a4f65fc636f39b
BLAKE2b-256 6c08982f78cab390a874c51c8340e7b643148b7a733310aa8c17c341d1c4daee

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.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.54.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: sqlspec-0.54.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 6.1 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.54.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f1ae3148e2b67eacc42ad1a3ac99e56e867af3749b490521eb20a2f5042f11d6
MD5 86ead92dccdf391b44f9f06449fbe4a0
BLAKE2b-256 1c34e97a00003385863c469a8d41fd42546a80fc33246df264905805dbea851d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.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.54.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlspec-0.54.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9a4c8379ce180629b9c3a9f8c735944a5c76ef0ba2aa033a5024e53be6f465eb
MD5 871cf1afab14cee185e92b756f0ba872
BLAKE2b-256 d4d99f5f52b54cd95ab2d43fe7362de644c4c931dc1da0cacb0c5e4e72e2c540

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.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.54.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.54.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a6a065fc0a1a7beae5eb4df498ba989580b1e344eadd71baf05d75272e620d6d
MD5 aff661052dad2ec67d2d27940df06b94
BLAKE2b-256 61f3931a75fce0815be45471054242d5fb1725d40fa8c5179726e0b75a40945d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.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.54.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlspec-0.54.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e708ab070954bdcc26e0d001be7c3f8ce83743aa7d6878c41ad49f878651c24
MD5 684e79c4a2a02ef3c940b62e4b21a50b
BLAKE2b-256 c5238716366b2d6ca2e243eabb02d7708f7b05ad8fc452f8699226b6c47c2fc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.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.54.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: sqlspec-0.54.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 6.1 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.54.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c0a83e03e2f9a769e0a1c50729a86fbb8bedb7955aba59449520fc38d121c930
MD5 bea92653b44290913d176df0072ed27e
BLAKE2b-256 722b21ed7cd452f231c6b4c2ebe512d4b2a3599b522afe82eefaedd2f7dd6344

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.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.54.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlspec-0.54.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ee460580f635a7951b52b138975c135ad383571a3782fd7890a244c0e5bec32b
MD5 1969325fe73f21723f6b468695302408
BLAKE2b-256 b132e4c489561cb76b4f4fde8380d8d2047fb01bee7a8ee5ce8eae53e077809b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.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.54.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.54.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4b30e5e3b3e8f73236b056085fa883d66567ad5f350eebb37b568445aabe9d3c
MD5 0b19bafa1493c39c9cf9d488084ddcfb
BLAKE2b-256 bcdfe1fbc6e7079dfcbab6899ada8b02f6c753ff5de8d691a1c8510c5b00b3a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.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.54.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlspec-0.54.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea46dac7e2ec2465d0a7d93e252214079ae2fcbdcb189240a18d153b30fd7250
MD5 9cc451abf4364145f18597873c8c70f8
BLAKE2b-256 9946352375dc46a4f2f6e51a2484b2e9746297970c84e728913c66a3cc20715a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.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.54.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: sqlspec-0.54.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 6.1 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.54.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0a5430c392e21d8a591cd8711abcc28106fb2ba55c29c6ee6735eceda3b6c6a8
MD5 a6ca3e1a84951a20a7ccb733dedc8e57
BLAKE2b-256 2adcf7d5a515f83874966e410e55d2a2506606a26c62b8c4013aed3d5483a0c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.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.54.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlspec-0.54.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d93f776151eb3c5fcc54417e71703632e39c015a552d76fcfeb69f318a38c92
MD5 6a146d84545c773ec134de9dd7268e59
BLAKE2b-256 eefe7f33fd6034bbcba61ab71db83e37e85e6c77b58dea8452c834978e48f373

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.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.54.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.54.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 aac5804f713e18b969130f9c81df1749116c6e412c57f243bdb41b749c03daa7
MD5 100779b5aa01d198af0cbd9ca0493741
BLAKE2b-256 20473e6b7530fd3cb4c4060e02b9d4220b30edd4166293c07be74e212594993f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.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.54.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlspec-0.54.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 672418ff1d1e826114838d38f3fc63684faa422165252063830f95ece23ad139
MD5 e4f6a7bdbf428ef23bbf59149cfe2977
BLAKE2b-256 752319846ff39e024105dde669951834c6112eaba45beb773ea26084545319b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.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.

Release history Release notifications | RSS feed

Supported by

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