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

Uploaded Python 3

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

Uploaded CPython 3.14Windows x86-64

sqlspec-0.54.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

sqlspec-0.54.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

sqlspec-0.54.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

sqlspec-0.54.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

sqlspec-0.54.1-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.1-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.1-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.1.tar.gz.

File metadata

  • Download URL: sqlspec-0.54.1.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.1.tar.gz
Algorithm Hash digest
SHA256 c4a9128b3774fea0756a6524f3c3b829dbf4df8d10be3c523fc84ac5c5491732
MD5 1379ff4fb0ca16164f30c516b2eb4092
BLAKE2b-256 4911ea63bd4a6d7fbc45e74388763aec3dcac7ead3fe0bca9f9151fda1039439

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.54.1-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.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0345360d07c8b209ef26b0a5260603b285c2c71ffbe8b536ed97c9dec691188e
MD5 4efcba4a4f04754b8227af6cf716a0da
BLAKE2b-256 a826a4ce072acc49f628013a5bee23522c00036433c90b2e135fd1bef5f2db23

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.54.1-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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 20977a18a0400997ff26e48c12b23db3fdebaf9cb86c8dfc70ac168a76fb1384
MD5 b3b6768dac7940d6318b4cd6bcb76b28
BLAKE2b-256 9cbd4f71d0d36819e3ae4ac9fa4f891b8a4ab3993fa2b8adf40782108e335197

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5654ac9a3fd4ba9d115b54c6b2c6e1e0b934b0a384af345dca419effdfadb12c
MD5 d03f53db360df52da9e94443574f1df6
BLAKE2b-256 18d373ab7d855bce0a3ca7d2e0e7121edcd9685663c1e11c4c613228f9a89a5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.1-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.1-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.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 762a8b2aa9b939d5e35419ccac1cfd79f7af55fbdbc27d968051c8bce877db24
MD5 e7cf7ed433ce47a46f09e7c3e5496a1e
BLAKE2b-256 de3be52d118ab6add9a5691c794fe5b1ae1f64eabb957ab110be7e2cba55f8e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22b5ab9d60f0303c50d3c8a1e3eb19061443982fe8465dd1ff90df44c3808b50
MD5 86957b92ccf0b59c96c5f048ca369c82
BLAKE2b-256 7199c50620bbf02821ad6734358a92d3e5897a9c04984d915dd1f41aab576f92

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.54.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 40fbbc08056050844dad773443fbd95b0c0cd4e0788aa23fede41caf5ee4a54f
MD5 94a5aa37170cea0d1c9dc604deb48fa2
BLAKE2b-256 88c97f6b8b59863a7353b22d76f0feda23c920aaea7c7c01cffc0c317480b77d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cb1f8a4774f315a60d845939588bcf544e2d8a67cdfc2745fec4c163206a2959
MD5 04def7adecfcbd08cccffa4da412cde8
BLAKE2b-256 03e869248497b1c1e40f0e08708242ab03587007c53362d69697cbfa240d7880

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.1-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.1-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.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 22edb2ee7cd15c3568a7e68d1028c2bfe21947110f7ae9ddfae9520dd0dce33f
MD5 e5fd5150fd589110eaeedcf33d9303c5
BLAKE2b-256 f3ee8e806de2ce87730dd433c85c3be487eda010441b757118a973cc865a48db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31e702c38b95da2a4ce0e68e4ab42304d550bc1e49758fadc6b422066a907678
MD5 9c13e03547b3167b9754537442033420
BLAKE2b-256 a509e3aced8756eb7000dc31d12778b0173b928479a4516248471e4eb692efcc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.54.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 202e2536e0f4e83665c57dfc75396b8a9e20e4379b8e50140aa1e0299e7317cc
MD5 35eb81ca0d72c31cc0cf768be3eb22b3
BLAKE2b-256 9fa284f263ad9adb1ef10995b51ba080b4d0d752e338f09aed41fb6b0d8dcd9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a31f39df5988cf5dd5acaa8dff98d68c2861b70a8190393622dc1e80f610d30a
MD5 ca31e1b8708dc6efef3f1958d05f1b54
BLAKE2b-256 4d86208fe0b517a6dae5fc562d4373f0de35895f938d1ef002c237c990f683ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.1-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.1-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.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 81d3d147fcf7e25c3de9886c30b6d1fea4359d44c7cc1abc639b0c1c031e8c0e
MD5 75cc297b16eb1983fd698495007820ef
BLAKE2b-256 c832df7e8e3d902b98642b559282dc45c5754ed7f16023872e49e034bb54eba8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 872a78b6c2868e496da009cd6c61d177ff03d2ccb68002d7fa681c7865d09a71
MD5 5ba1aec7151dd2538e4176a151f3b023
BLAKE2b-256 01504f1e52eea5c4ed6e295a68cefddc0cf39f26073e0c5cb76064e884c3ca95

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.54.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dd3909bdbf64fb07f0527cd89e5b17839165cb75f8d1c95000cf3c33bbe087f6
MD5 3d5574851497d52ab7c6644b67160dc9
BLAKE2b-256 e6311e88b85c631a111b84faf1cc77a413b06286eb6298110b3aedb39213170f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3b0a4ef7160aa6142a79d53fdb5dacde85509e79a167447fb0a94e79edc79063
MD5 3cd3961c1ed4d5f27ae139a31e26c57d
BLAKE2b-256 c1de42d5b3477c3056b8f2e72e809d13b333510b3f96af680229967766c5006c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.1-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.1-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.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6848b3d266aed28a77e79a64b6cceb771491a6a60f12f22ac7460cc41f9e2ead
MD5 f551257a17b49a86043b519872c9830d
BLAKE2b-256 1afbf2e63a7ec717df2d613768edd2e8a941176e49e8e69adb05f2da2bd3b3f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d9ac601e2bfb9d9a0967455ffc71193bcacb11e0d253cc5d40ba94c35bcf1a0
MD5 d84c8b4a0a558723462c346dc08b3b38
BLAKE2b-256 a47e70cbb3eec21a8b64d0d2165cfffb9fcf7d8764327553118639d9360546ce

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.54.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e243ad243f36d56afce5263e262fdc65917a7ab220f3862a4358a131e20a5210
MD5 754e9c7df021ecb9d0915f7dc489e518
BLAKE2b-256 b6a244ae485b9396a7fea164c830539904bff429ad02a2d8b6d93129b3a2ad87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 126cc55babc6d886d6dd002f03c12a020c3812450c05dc38c9b89921f656c395
MD5 8faf6f06a979a1830a2b8f38a9175a4e
BLAKE2b-256 7bd6d27e2d26791df5b8dbddb8b04f48c20f0d15ce757fc3c1d52087757fd615

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.1-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.1-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.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6a53ca59f3ef95232783187b40a392838dd69e52945006c76ca6cde251c3adba
MD5 7d19de1cb23e425af210c74d5a8b0f24
BLAKE2b-256 9ff5eeb657affea9bd37936d9ac874b157da718c091328a2a12037226592c171

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4aa3eeced9abadef36d65ccea832a6888d659a65f7eeadcce86a04fdbd4e4e48
MD5 24fd2258a456a98535ef87866f196155
BLAKE2b-256 2dfe170d9adc1039c755e16aa945506e92a788469cbd81286ad94a8210ad6d36

See more details on using hashes here.

Provenance

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