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

Uploaded Python 3

sqlspec-0.54.2-cp314-cp314-win_amd64.whl (6.3 MB view details)

Uploaded CPython 3.14Windows x86-64

sqlspec-0.54.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.9 MB view details)

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

sqlspec-0.54.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (8.4 MB view details)

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

sqlspec-0.54.2-cp314-cp314-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sqlspec-0.54.2-cp313-cp313-win_amd64.whl (6.2 MB view details)

Uploaded CPython 3.13Windows x86-64

sqlspec-0.54.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.8 MB view details)

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

sqlspec-0.54.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (8.5 MB view details)

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

sqlspec-0.54.2-cp313-cp313-macosx_11_0_arm64.whl (7.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sqlspec-0.54.2-cp312-cp312-win_amd64.whl (6.2 MB view details)

Uploaded CPython 3.12Windows x86-64

sqlspec-0.54.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.8 MB view details)

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

sqlspec-0.54.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (8.4 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

sqlspec-0.54.2-cp311-cp311-win_amd64.whl (6.2 MB view details)

Uploaded CPython 3.11Windows x86-64

sqlspec-0.54.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.7 MB view details)

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

sqlspec-0.54.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (8.3 MB view details)

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

sqlspec-0.54.2-cp311-cp311-macosx_11_0_arm64.whl (7.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sqlspec-0.54.2-cp310-cp310-win_amd64.whl (6.2 MB view details)

Uploaded CPython 3.10Windows x86-64

sqlspec-0.54.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.8 MB view details)

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

sqlspec-0.54.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (8.3 MB view details)

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

sqlspec-0.54.2-cp310-cp310-macosx_11_0_arm64.whl (7.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: sqlspec-0.54.2.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.2.tar.gz
Algorithm Hash digest
SHA256 900466198e0f2e25308b203632267cd5669e1831ea2b1e6eb7a0b8f4f224efbc
MD5 53ca1139e43698e4464d4454ddd04c39
BLAKE2b-256 c168e236f87eab22dd830e40d55c277ec874d64229da8f9c3dc4cdd9f8263f61

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.54.2-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.2-py3-none-any.whl
Algorithm Hash digest
SHA256 ba3a579a46df27197328d63270210f46006ce77d0cae5e1023af8b363c2e8943
MD5 43f5976ecd5d32559fc2ba2e899e32e6
BLAKE2b-256 6cb4b49063e650a002db6247c4d4edc6020880da4986f35f76f1ff7427c8c7b6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.54.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 6.3 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7bb23f4c06c370ef87441f9a123fb14ccfd963d5bf21b25a7de5256670a1a3d4
MD5 7d5ee1c931dda1d73ebd8825760b823c
BLAKE2b-256 2c68d7680b9feb6fc7fe1fd9f61a428bf224dcf779d89acb5b8429b5b20f6f1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b0ac108053e71bf2c74ca48fbc2af8ad12662793373f686613b7c7626c577213
MD5 3b0428bb9266b46f2e3ef35cf3dc4ba5
BLAKE2b-256 1994955345b819c0aa987a9c0366acc0d84fe8f5b629b849b8f39aa112c92162

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.2-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.2-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.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 22ca7d553c7b7dbdb9f1cdc78e89216574ebabf1544dccd2a99287a23ac36d9f
MD5 82415b38111ea1441e19c21060013fa2
BLAKE2b-256 2e5a1ff6e408d9c99f5ceea68c11d656e9f3506986dbc69e430a69834d11cdef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d68ce88cde601b9b3af151e331a4046a33deccd49b9306b410df00c83b954363
MD5 e8a32ee2a7352c4f59d4654a85cd516b
BLAKE2b-256 13689f47984ca50442d7e0c023a9271b60149b534f0bf68c1715974267daa9eb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.54.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 6.2 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2ea52feba0b58e3d7068a1c01d19e779aa9e80d2be43e42a531fa3149e8a25c0
MD5 bd3d50f76c1e8cfa90cd1ae36a3908e2
BLAKE2b-256 01eb139652aafe31b6235b88233e12f39659ac522580fe4acc22db10acd4745b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6fa7bfbadb0ec6b781c78bf67fd4921919e98072658513b7157e9cda1d1bf609
MD5 e3bf5106786eafbafe3dac727cfc27d4
BLAKE2b-256 80e840f0b8694fa1a82ea94269c3f4ab999bc58abb0e8df6d0784d045135633e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.2-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.2-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.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1918d0c40016171e506bad9cfbd49596299f7d143d28ce58e7a647e5d4607d7e
MD5 df3fd1e22fbdca1e276042c6c4f3593d
BLAKE2b-256 04d13d44258f19b04182407ecc156c6d8269a879cd507f47725f43dde24ba0a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1727ee1ef9bbdfbdbf01ba282d9de61ec035eb9bfaba663bf22db64df6c6fce8
MD5 e466440af76a2f56e89c3c9f5948b63b
BLAKE2b-256 11572a1ec0451ae727fe06b0d3834a578340d7d041b2b51bcaf3c47581c2344c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.54.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 6.2 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f28413c472de955170884101e73b887f782e5b9dbd6760e389f5313100625b42
MD5 f75aca664f92be1af1d427967038498d
BLAKE2b-256 987ec4bcd718f16e2aaa653f47a05e59854969d6edf82048eb03ff1c435d4832

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 acfe6d2dea53e4e0be8a9a92877d8dd6e560bbc30e5a638ac2726ea2ad65a9d5
MD5 5cb737c525dbfaba73c0cb26a8a80fa6
BLAKE2b-256 6135230cf5aabb4917b8faf3cd8439d66f316cc92ffa673358da550eac3a1caf

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.2-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.2-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.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 bf6f475d8a6dae3303a68ce96fc29c67928a92097ba67acf27d8ab2d0ad15640
MD5 897dfd14a4dc5cb5446f35a77328d634
BLAKE2b-256 42b255e7669748b7f6c8b888b7d857d6ce84aee49eca0ce987ad4c40a9cf476b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ea36c3e8efa15ef185cd8bb6e52faaf03efb8e9632e0ac82399638be2e2986f
MD5 07c5a68a7b1382d6804351934e16d3ec
BLAKE2b-256 0f59c8d496a40591db636430123877786acd7cd6a4db7092f2e41fdcf1928d70

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.54.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 6.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 sqlspec-0.54.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 446bc66bbc135505a6fb368d1e67ca94ef2e8252da1ac74898e3665f1f6a6ed0
MD5 176e9eb988de79d6390fcca1f9fe4f7a
BLAKE2b-256 fd0665abb0593291051a3f06f4c441992bcc2840f0c1514436946c2678f81349

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 13b8069907c2ca65144d5564b94bcd43ab065398dce16a245e6cc07dbcb3c650
MD5 ab44d5c2533ebdd56284478695323ea5
BLAKE2b-256 b9ac304af0e8ce618f588f16713dd4511f8543dcd9016dc977e0f76b6462e64f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.2-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.2-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.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 191249c3320320d2392833be88858d06350da29e657afbd4fa6b4ebdb963eb6b
MD5 a8245671519d1e3add80f0774183899e
BLAKE2b-256 eac25538d8f6b2d7a06d0fb3143734c4df8d60cf5a7a13a7dc7a0172c0df3f2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab2ced2960b5364a1f70a6995113f1bc0b2097d40f99413a46fb1ee07b0ad940
MD5 47b84cf39fc811cc538c67c8a85b7198
BLAKE2b-256 964ffcd79f50b69726b3a92f53ee633890bc04113573135933f8713b95873ddf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.54.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 6.2 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9791fced30951b6b04a2cd65b45ad6cedca06da5be4b603101fca35e4ba635bf
MD5 a50c22fdb5fd0f28ead553b6b63849f0
BLAKE2b-256 1d1a0ad3c101e1855edf20f4d620ca4a1a0096d91e79b51dc3ad69ab6d341bc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 db2cee135cfbaef421157f63af1d219752c97f09944a1d22c9b2f9ee90d7d77e
MD5 dff423f33c95c120a8804eee49fd739f
BLAKE2b-256 d23e89ecd32da13dd86063595f13e8081a747583c9c22a8898d2358409a0087f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.2-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.2-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.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7de00cc5c1bad863de7223dc543a841695cdb6c21ef266d386d8b8f694c6e16e
MD5 43f02e073c960a4bd19bae9199f4927b
BLAKE2b-256 f941215a8c52750601b99c87a22c8a394efd020df1c99a5afb9bf727a822f52a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb1eda98224d6dee51f5b386f4a57a640a641875f74eac3cd3b2d483f6afb804
MD5 1bd0e18eb1f37c3e61d8f2955d14800c
BLAKE2b-256 f4d215fe76170afdd80c3bb5e6bceae8fabe451c52f6661524dcc01ef4702d52

See more details on using hashes here.

Provenance

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