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

Uploaded Python 3

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

Uploaded CPython 3.14Windows x86-64

sqlspec-0.54.3-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.3-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.3-cp314-cp314-macosx_11_0_arm64.whl (7.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

sqlspec-0.54.3-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.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (7.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

sqlspec-0.54.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (7.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

sqlspec-0.54.3-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.3-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.3-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.3.tar.gz.

File metadata

  • Download URL: sqlspec-0.54.3.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.3.tar.gz
Algorithm Hash digest
SHA256 766cda2eade7aa35ae1cbf9e6658e000aa4bf3741c97b223a52ee3c4866887a3
MD5 0bb43ddc8f317bf2ce8a7cf47a2c08d4
BLAKE2b-256 449c02643a8ada26aaebc9572685676eb3b01ac305b8988618cb480e26a0526f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.54.3-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.3-py3-none-any.whl
Algorithm Hash digest
SHA256 7c7cb0fb5e06f2810d9f165bdf1b4207dbfe393fb6145f2aa3d6797bb17cfeff
MD5 f08ae870ea77a19710e56e3ac4f610fc
BLAKE2b-256 e14befe2e8efd5e17f228bacf85ebd6ab8329009e582fd9922e68b26f9904401

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.54.3-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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 14fa7c36d4ab6250869a2af009d291e0badc4a4f12149dffec8bd34bc01dd708
MD5 8e601d3410c1271a8daf71e4ad51bb2d
BLAKE2b-256 881cef05fe16df675cc455926d06175f2d85a3fc34057d58848c682cffd46575

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d5a1400ccc925a912dd7d909473389df3500cf8c06b49f2cd9d2bad3f7e559f9
MD5 a49c526f265105245eeee0eba63cb3e3
BLAKE2b-256 8b25f0658f2c8ec5225b65338061ac733e496dd5325f75c7c442f3e482c77805

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.3-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.3-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.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 65e081349a23a8d9f2e41fce1bd4127fe59d969325106edb4117269bf2c88b54
MD5 5049780164c138d70efa8f07d35b62cb
BLAKE2b-256 704ed46f596bb6fabb796f7229824d7d2dbc7d1365e249a2734f8d2d3b4b356e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f825471b04c580479fbcad727f42e3e6626f51f51c2384e4392ecaf56618b9a7
MD5 e0c9642f81b92c962d7b761ce0c3e3c9
BLAKE2b-256 4d5c97d843c35603f888f90995369efd6f4f7fffe1f795d169469ae7d1eaa1ed

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.54.3-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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8c69a75e0be71528f24d6a843dd960846a095098e1e04bb740c320b2d5075d93
MD5 28c1a1f499ca09d9e414a863190f501e
BLAKE2b-256 db1cc8fe03949842d33743ac30cd8d9871414d6b0f5a85a64db82f3b3eaf9532

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 006f211e65ab7123c7c415c73b35a7b4c532507f1a83aaf88cc6a0466f50a269
MD5 a1a21c9fd7b18f353429f300355ef4ad
BLAKE2b-256 357c92ae73c444e0ba86e833b253065c9f0d5d9871531e43f9e8ae9f6c697f90

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.3-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.3-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.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6734fb42e315627b5f1a75250cec3afe36209e7a205fc9be0b16355a070003d9
MD5 bdcbdac725db37b83cc31c14eb9f2d87
BLAKE2b-256 4406476bff09c692c36c8c3b5f2b84590487753592de9e0d63ef811664f5a886

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bfdc5a351255dd1296a338d29bf63dd9d9ef0db0ae8b0d34a5cef5c728b2bf6a
MD5 c7511de6e5725bd6b08fd20c4c2dc186
BLAKE2b-256 90b6bce2f82301513d2165742d7d7cee99c806e8c6cf5eba78971390fcc781a5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.54.3-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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3bbb7ab3f56035e6e641c04bceb1abb3d7d69a56ff70d5963cf6550b3ffe6fd0
MD5 cad6d37a5f18a62e7d141a78d090db03
BLAKE2b-256 a89116e2ce0184f3f05b382e882715047ae4470efbaace6cf3baa93838d8b15f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d40e00c26a1d7dc422655b84f0e68cd697d1d5ce398e1aa664066a180f02deb
MD5 3ad6dd77f4f0f4aa45fe10906acaae7f
BLAKE2b-256 ee08f4ade4653f8197c176b447d697888ed500c5c58d186aa44bd69e462de154

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.3-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.3-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.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 53b0d89b49e73db5c4d1e827aec32001cc69d3da807fbd6eb876b946cea62115
MD5 e0d027fa536fb9c47348848d269fb370
BLAKE2b-256 ac358162260546129a01bfeb53eaf99e45249687237fb874102751d0d20ab0f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a973361704f930363c2e95a68bbd2471678eed4a8a54e0c8ff5f1d3e8768bf67
MD5 614d7b4fa672c34d17265c2b945c497f
BLAKE2b-256 040c994bb3dc1405610a95eb32d19cdba471a83f76ea5c76cc43b0686b2f7022

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.54.3-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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e992a12fbbfa2896f1874d58db0bb9242c3674356b205976a81f44fdf55b8459
MD5 55ba48402d77f21ffc8aa92f3d375b96
BLAKE2b-256 87bf08aa5bf6a0115923f541277ee263a74ebc7a9053bb3acf84fbf9b7ad4b32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7edd8b287a476f6c07b418d1e4d1e19e0b8570efc01496a10e700c8c240c1756
MD5 cda60003a314bdd8e37e486f4d41eda3
BLAKE2b-256 7f1aceea4bdf5f48c73b848b6aa7b372e8bd30e4952aa8c17605d184832ea27f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.3-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.3-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.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fca479ac95b1e5fee7fc68eeb97ff97afaa4f0f6b0abf8585c570ccdad5f6250
MD5 24a3c06da73b5950001e143886c0e62a
BLAKE2b-256 f8bfc85a5f03a144cd8e336f93debdd4a16558d7e45c471cbd4bb92dcf4cb293

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22c0daca8e4f83ae2178b85480d9596ee1e1e8af67896f39f445cd6e4ddd434f
MD5 61a9f5ce6bb599d34f208d0e4928527a
BLAKE2b-256 4ea45ae498e094c2d2ed7b358225194ae4ed2a01f35d13860d837743afe63d33

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.54.3-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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 961cf66ccc36297b34478d9206247a3e8e2235f5f1b6c98cb8777ddafd07629c
MD5 3dd242ba1a819c65b5ca9b44d763d206
BLAKE2b-256 36c7014b62fe7f29baa04709519fd7f2607aaa65dc659837fb978c4181bbc290

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5496255992ac499b946aa9ff2f7284c6486010303eee07afae6eebf6c4ee9816
MD5 c6fb7645229fecd45aa8f70cb7d73743
BLAKE2b-256 ee672ae052c610ca38a85a04267a16fc70762309b7f9a775c3b9648e4abfad86

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.54.3-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.3-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.3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6fe4770abbaf5dd923f12afb635d803e4a785f6fe8ae77988a6ae06c3f1ed475
MD5 b5ca1c6839c4dc2a9a06a2a01b0143d7
BLAKE2b-256 941f3305988a6560fc5350d1fe4a2771f343e7f18158c472ec8a51eebae06d0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.54.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b3c569111504328ee760e2c23e20ba9c2be18a9db1050a273c90ef2cc6a299a
MD5 06aa516f26a321d6cc3250584056705c
BLAKE2b-256 19a51538ebc70ff5095a79d51372da3d2c8273e1878fce27d351b9db87310e2c

See more details on using hashes here.

Provenance

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