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.55.0.tar.gz (3.8 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.55.0-py3-none-any.whl (1.5 MB view details)

Uploaded Python 3

sqlspec-0.55.0-cp314-cp314-win_amd64.whl (6.7 MB view details)

Uploaded CPython 3.14Windows x86-64

sqlspec-0.55.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.3 MB view details)

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

sqlspec-0.55.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (8.9 MB view details)

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

sqlspec-0.55.0-cp314-cp314-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sqlspec-0.55.0-cp313-cp313-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.13Windows x86-64

sqlspec-0.55.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.3 MB view details)

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

sqlspec-0.55.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (9.0 MB view details)

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

sqlspec-0.55.0-cp313-cp313-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sqlspec-0.55.0-cp312-cp312-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.12Windows x86-64

sqlspec-0.55.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.3 MB view details)

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

sqlspec-0.55.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (8.9 MB view details)

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

sqlspec-0.55.0-cp312-cp312-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sqlspec-0.55.0-cp311-cp311-win_amd64.whl (6.5 MB view details)

Uploaded CPython 3.11Windows x86-64

sqlspec-0.55.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.2 MB view details)

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

sqlspec-0.55.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (8.8 MB view details)

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

sqlspec-0.55.0-cp311-cp311-macosx_11_0_arm64.whl (7.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sqlspec-0.55.0-cp310-cp310-win_amd64.whl (6.5 MB view details)

Uploaded CPython 3.10Windows x86-64

sqlspec-0.55.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.2 MB view details)

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

sqlspec-0.55.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (8.8 MB view details)

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

sqlspec-0.55.0-cp310-cp310-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for sqlspec-0.55.0.tar.gz
Algorithm Hash digest
SHA256 7695a374d89da269cf8f6984ca9367047b98edae95cfbdb05ce3ca167e34de99
MD5 faa0040ed3e94dbd515638a441f7a857
BLAKE2b-256 a9501621bc1a9f02d398bd10f6fa70fa9cf47c432c164a65b9f0cfe2829687c9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.55.0-py3-none-any.whl
  • Upload date:
  • Size: 1.5 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.55.0-py3-none-any.whl
Algorithm Hash digest
SHA256 beb0b08aa646c47e3fb74647dae3829005fae0740e398ca730d7e9c3e0acf710
MD5 8033b107762da9029c49f1e7215ffb88
BLAKE2b-256 afc280afb426ddeaf52486e600d6c89d1fa73bddd107f497bb86a20cfc150852

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.55.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 6.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.55.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c656e2cf846bcd17fea8e52bab3556734320ead6836fdcfe417168a63bd04447
MD5 ce8f893ded2e1941d603e63524a056a4
BLAKE2b-256 caa299c1657632af46bb163e976125d6be03b8b7160f96c553a84e21843c9b15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.55.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3e81fc7c98567477916d8465afbc36a6e969bf3e144ac0889d2775225529ef32
MD5 050203449e44f1ed8e2d91a049f55187
BLAKE2b-256 4317d2c0e9843141f62ff323b4dd29cd739a3e3afde909823dc4089c101d94c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.55.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.55.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.55.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ae4a33d1c50fd3433cabda58f20a5ee15bf513057b8718beb2285938e01b3c7b
MD5 f8563d7f920732231b811bb19a9353de
BLAKE2b-256 202af38397999479a847c4ebeaa990b187eb86d448edd3ca5545a8f1f0dd0cf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.55.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bac1100e2337ab61d26a37eb2d55e49164aaa58e9c9f66b504d77e513b7d5cb5
MD5 22f9e617aed3e562b4126e85f7af3d57
BLAKE2b-256 db87dbc950d63a1791e1f4c4571bd4c1f3bd6a9ac695acef46e9f2aa6fc6519a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.55.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 6.6 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.55.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 eb47f938953fed0f735699d87e92e83807078accafa8d024835d413bbaada074
MD5 d4ea91d19d17665e96d01f3ef5781255
BLAKE2b-256 b06f41844cb05e68967db7c1691807af9460bb4f29a1f19a36c9ed6837e2f427

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.55.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f73f3d3de0657d86ee4b66ff271e5c0669919455e57639e10b12faff99cfcce7
MD5 1cf0b47019862e4fdbe9d3afe1ce0ac1
BLAKE2b-256 1b4c024bdfcb5a3b24e6a5b3300b1960d2af100b2f5a94c2d60cf5b26b5c999d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.55.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.55.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.55.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4717680ed6ead91e858c56199d17cc670f0c8a77d2e08cb92408c9fa1a506540
MD5 25d033f6ad42973041e1685c61227fe6
BLAKE2b-256 a4122a861af1efe9ea9ae17cd5f04a39804d4b956b35a24edaf05c9b4542f3d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.55.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8621b227955367eec716c8032c3d05ea5fbf8303655e1c64c1e08be9128b36b8
MD5 64e7c069182176ceec35ff6085106dd2
BLAKE2b-256 7d1f04a124fe50429dd59694bec4e678d25de1afbe5ea6807144000ff4fa46cf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.55.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 6.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.55.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7837f7fbac13ccdb40e778c7da204053902d5a68e92508c605f3ae554f7ec2fd
MD5 b538f8d8983ac893b77227c0d4aa7e28
BLAKE2b-256 06d06622aa4e0a835eaf4b85e3001eeaf77d012e198847d40b8684203ec85d46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.55.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 14dceefeb2dcf3bb2c8c42ea3c90d5cad15d7b5dccddc467a9e5880d5d373a7c
MD5 fd72623d26157a155709c131a601445b
BLAKE2b-256 c749283fd491fbb128a99c8329ea6eb37a36b3a0d071b4144c30fc68a9183062

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.55.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.55.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.55.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a6d4612cd489a381b01100889c50a10a184f52523fd34b14e5500a589f23c79d
MD5 68d3225bf826b0d1743452daeafd2994
BLAKE2b-256 eeae038302ba4ac370510a5450e30e4c1b4a9b07a9044d5245a6adfffdcf44a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.55.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed8e659fa0f7fffe811a7c579f486d3980076a0bdfeed5a2219c069ffd25f40e
MD5 78662b7897c5a234386c44c9f823da95
BLAKE2b-256 45f20020afea6db67f1f509ff6d083490ccdbd7528961b664bf61aa600972e20

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.55.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 6.5 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.55.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 db00cb966d18355beb8f4f91ece0ff3f086ab0798addfe5ac2b4dcffcecc7e64
MD5 83b3eba8eb42238837f0fc71c0b214da
BLAKE2b-256 48dc2be736d7f0d8edb0bbf2e961388f939f79e0843bdd900463a919087d6ab3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.55.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 733ad9c8e2b4726b89d729d6cb8b39370f1ca5a50da02549c19971eb863523f8
MD5 3ef3fd16173d2b80266be331bcbdc853
BLAKE2b-256 0909d38fd04532df0cc36da92eb809e16c2c43ffb7e764aedb1b72668140a018

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.55.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.55.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.55.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c3d3f514f2310d1d10570ad3716483d0b2a11481cd4be9663deb5ee70dc8afc8
MD5 524f0fd540dc5d5ca69a6f8cca4e0925
BLAKE2b-256 91fe94a531451f0baafb5b4c9d1d58da2408d64c4e3e2fafcb22022f00927087

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.55.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1688df5da1bb944b156638c207d53a04ca87b9eb60e36a9e27e50277cb11eb83
MD5 6a88b26d63116e94432aeae8d8dbc27c
BLAKE2b-256 1a0b76b66c088bebb5aedd633a255a7f37032d252d864c1a3b844db3572ae369

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.55.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 6.5 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.55.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 20c7205278d4dd6cee5966278e4d500a66a7c0db8f794ca57fb66548e97deba7
MD5 90dd046cb1221e3e77290b51a415b892
BLAKE2b-256 0a9df8943a8edc51ea29a40e1a05af3a50f1150e0ee0629367ffa2a52a6fca1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.55.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e1868b444942bc82614e7b4ded476e55a71ea52f9271790bedc4726e9666091f
MD5 0b2be466222ecb1acff2c1ac52d97d6d
BLAKE2b-256 aed14cddc40f54201f37076cd56829498b5865e30b69f75f5d8bce7b2cb8c512

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.55.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.55.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.55.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 dbbf3e207fc4147386caca0ad0d1442d3768bf17446a62ed3c35ba771d401d06
MD5 7155c76767de9d39e198c6a236d8b38a
BLAKE2b-256 1f762f1af55535ce8bc0fffbec2be5a1cdf5ad5e9ce617d77ced0278c9a173c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.55.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14c49ea2a4a8ed52452bb31f5ddbe90abcc3a1e51d004f8a918a5f2052e10e76
MD5 653f7deca1d8632abf6e227064b9a465
BLAKE2b-256 364af1f8dc27be21434cbbb087c1bae667e80b1631ed8cda71ea60272d309e0d

See more details on using hashes here.

Provenance

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