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, 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

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.53.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.53.0-py3-none-any.whl (1.3 MB view details)

Uploaded Python 3

sqlspec-0.53.0-cp314-cp314-win_amd64.whl (5.7 MB view details)

Uploaded CPython 3.14Windows x86-64

sqlspec-0.53.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.0 MB view details)

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

sqlspec-0.53.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (7.5 MB view details)

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

sqlspec-0.53.0-cp314-cp314-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sqlspec-0.53.0-cp313-cp313-win_amd64.whl (5.7 MB view details)

Uploaded CPython 3.13Windows x86-64

sqlspec-0.53.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.0 MB view details)

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

sqlspec-0.53.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (7.5 MB view details)

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

sqlspec-0.53.0-cp313-cp313-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sqlspec-0.53.0-cp312-cp312-win_amd64.whl (5.6 MB view details)

Uploaded CPython 3.12Windows x86-64

sqlspec-0.53.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.0 MB view details)

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

sqlspec-0.53.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (7.5 MB view details)

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

sqlspec-0.53.0-cp312-cp312-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sqlspec-0.53.0-cp311-cp311-win_amd64.whl (5.6 MB view details)

Uploaded CPython 3.11Windows x86-64

sqlspec-0.53.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.9 MB view details)

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

sqlspec-0.53.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (7.3 MB view details)

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

sqlspec-0.53.0-cp311-cp311-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sqlspec-0.53.0-cp310-cp310-win_amd64.whl (5.6 MB view details)

Uploaded CPython 3.10Windows x86-64

sqlspec-0.53.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.9 MB view details)

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

sqlspec-0.53.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (7.4 MB view details)

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

sqlspec-0.53.0-cp310-cp310-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: sqlspec-0.53.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.53.0.tar.gz
Algorithm Hash digest
SHA256 0e9041fa97bebafecc3b34660500affb340f4983a07ab741488f4470824ad40f
MD5 46f707c6e8cd5093ffebf2cceab116af
BLAKE2b-256 7601c74d524adc9ee7559352d14d7077b794089f9952304a7e57857d2c1450ba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.53.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.53.0-py3-none-any.whl
Algorithm Hash digest
SHA256 742b64280eadfa5f3504eba2ed8c315ebf615535d275916112376499e83c89bd
MD5 8ec78c5c25bbc254e331aea951ec0e26
BLAKE2b-256 b4282abcd11456017604f037c7a3253075297a1ea147c2ddb58baccff87ccf5e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.53.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 5.7 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.53.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a910b275a188491b55e11e0e490eea07472598b570b4c4f517d3f9c4902e277f
MD5 d0863de1bd52a6d51027c4acdcfd8eda
BLAKE2b-256 bd8f522ff0cd53f105383e499107ab00f6f77f3c3d00121cec4b99bcc0088b76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.53.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 816b63bb33a6aad8846f99ad50a3465a3555642a2d0ad4c601bde0d894773e34
MD5 43253f964aceb5a06667799ff37a8e2e
BLAKE2b-256 b8b5a288ea4dd10d809e6e4ef2618c4f1e63eb43306b15fde4c40c519926eda0

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.53.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.53.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.53.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 141353b98bdb0ffe474dd1c850bf48ff7ad905ed7e23b2ec831aee1d6e843b05
MD5 cd4e713435c55202f9ab50caada92e2d
BLAKE2b-256 35bec13b8d41ba1e3e659cc2b26d36700e152b6fc2e93474e34e009fc82bc15c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.53.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7df51cb539aacdba50f4b276f4ec265cfc6a5f4044a67003d4fdc08c48d2073
MD5 71ebb5bead46656287e87d880448a2b5
BLAKE2b-256 f08585b00058b34b6aec809c428630ce2b92e8a22b982e786bf2cc9a77b87175

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.53.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 5.7 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.53.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e79e79870bc7c6cfc824b4d11093f892912456bc1a242ede325f021210346454
MD5 44d32643b42f534c523c3d61ff8f14cf
BLAKE2b-256 ab2f65ced6f10eae6a8c249abd82295fd81044df1a713bf9f891b1a67113291f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.53.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b46a9aec194f87627e918f3edba536c57ab9fed477b94717474fe97e9285ae11
MD5 d6f05aa596f332b0040e84f7d5b5b9fc
BLAKE2b-256 8b56f9b78dba801a403ce896bdce6ea23cbf89da8abe2e98d08e508f2903d10c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.53.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.53.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.53.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f18a27bb948543a4c33e1dd3f1e4c35b690f3e275560ec86b5b6e160f505dec4
MD5 4653bc2ba4480e6f0e0711e83baba62e
BLAKE2b-256 8a21652a35a7c3bade770e81b7a72a4aa794c0b8676a80aae7121c7a3f35ef7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.53.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28d3bfd46489720192f988a847ddcd44632cfa9470e7c2f7edfde43a0796a238
MD5 26c63a10085a81f43cc27fad1e603fca
BLAKE2b-256 052168e54fd8c453a42c7126e83695ed9b3aca75d3ae1074370097a672e7c57c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.53.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 5.6 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.53.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3e2b9b602fe6357b1b374be41c09d343947ab50e331b773c41b193ac359c73ab
MD5 9cbf3a3ec8f62ddb7225520e7c4fd714
BLAKE2b-256 543b32b2ac69dc3332c59e951513941633f3691cd73b1694d0cb58a750901e2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.53.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 630d6ef1a59bc6e44181b3f382c665aca242cbfbdbf485751497a4e537e73ae8
MD5 db2ddf3df914a6fa8b3d667e2470ebbd
BLAKE2b-256 7108acd98634dbcecc895d50581b4b20b4d68bc1f88c58c7aefe81adb18c2bad

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.53.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.53.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.53.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d1003bc8fc241e80c4916b1f0e1b956ad283450e8a718f35475160872e0e74fc
MD5 9489e3746adb29157a12c7aab0bfc92b
BLAKE2b-256 a0ba87f82f3109c09bc30a54a1d1632cd9d4f49feb5678dc28d7441661f329b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.53.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e5539579fcc8dcebec460f91c8c21439adc0a6baa050846445858fa1a2f7df6
MD5 9601727ad4dd757e4a06bf6e7af1553b
BLAKE2b-256 0bb9f8179db2647f72548f0e5ec32bfca3791d89d0b7ecd33c50c7ef441f039c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.53.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 5.6 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.53.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3feba23c55ffeaa56b290b34bf5d24a04272e822c1e692d2db740d76bbc0547c
MD5 7dde90796c591cf13cd753cdf02849a4
BLAKE2b-256 b84066ed5ed106330b0d254561dfe5fc86809f946e8cf693b784f0ce3fdad87a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.53.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7a76efbc84c353bd7192bfc7747ca450472bac48323319e9e7a879735b338389
MD5 d9aa9c57d0cea8385b35a4ca96b87066
BLAKE2b-256 6b310276f5359174b1bf6a0f1012510aa68c8f2f8ac0b8a0a3f3ce08f8c3763b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.53.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.53.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.53.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 36e33c6d6d95f13859069d0079201e1ad3e8c79f8dce1f347704670e10ac210f
MD5 1ab35d9d69ab5e6ab130f1ed95fb70fa
BLAKE2b-256 5d0bcd1204f1059889450bd5b5a1282a87d30b579440f36f9fd78211a17e11ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.53.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 084d6142750bd21586aa6d666535456b4223634d47b057ef344a726a2d607a56
MD5 af0c3d49c3f2cfb0f830a1c756fee845
BLAKE2b-256 1680444510e796918b87bd82d2ea32ff3c67f898f947c5571696e3999d1ede3b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.53.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 5.6 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.53.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e3a3d66807e7984012bf4f53203e19fbe5a8cbb3fa632b26e7b9d9542c1138a0
MD5 923cdbd64162dd4ef5eae0358853f9ff
BLAKE2b-256 0685f1e937c83228683a1e6ca91a61fa5b64f2b837bf86727a96ae03c764b131

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.53.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3aab69abd12bb0c4a08acb60ef8ecd50f506457dc757dbf1b5b1c88ff6e48448
MD5 83a37833bfbd3c6398fc5a09bc0b8ea3
BLAKE2b-256 e7c2a902c40e69a5ee97b0d447181aa32d2d66bcf2643ec997a32a13dc831162

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.53.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.53.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.53.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 bc282fa15428244c6019e2ebb0e69c8045f898810c71de83d37aa0432e12ff0c
MD5 1f793842800a3ba8a492a1018a1491bf
BLAKE2b-256 19fa4ea7f5239ecd3c1192e3ef8f60267f4a962e6c04e19de3347aa9867c6326

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.53.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1898e47375dac9a9a152e157d4fae27fc5c6c7d78714d81e33b1680513f716da
MD5 03b651b1fde76e7b1d82bf1578bc0a57
BLAKE2b-256 0c05d9b263c07df9d98c5d34938056fb409862778e409b13a1159f43a72a0282

See more details on using hashes here.

Provenance

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