Skip to main content

SQL Experiments in Python

Project description

SQLSpec

PyPI Python License Docs

SQLSpec is a SQL execution layer for Python. You write the SQL -- as strings, through a builder API, or loaded from files -- and SQLSpec handles connections, parameter binding, SQL injection prevention, dialect translation, and mapping results back to typed Python objects. It uses sqlglot under the hood to parse, validate, and optimize your queries before they hit the database.

It works with PostgreSQL (asyncpg, psycopg, psqlpy), SQLite (sqlite3, aiosqlite), DuckDB, MySQL (asyncmy, mysql-connector, pymysql), Oracle (oracledb), CockroachDB, BigQuery, Spanner, and anything ADBC-compatible. Sync or async, same API. It also includes a built-in storage layer, native and bridged Arrow support for all drivers, and integrations for Litestar, FastAPI, Flask, Sanic, and Starlette.

Quick Start

pip install sqlspec
from pydantic import BaseModel
from sqlspec import SQLSpec
from sqlspec.adapters.sqlite import SqliteConfig

class Greeting(BaseModel):
    message: str

spec = SQLSpec()
db = spec.add_config(SqliteConfig(connection_config={"database": ":memory:"}))

with spec.provide_session(db) as session:
    greeting = session.select_one(
        "SELECT 'Hello, SQLSpec!' AS message",
        schema_type=Greeting,
    )
    print(greeting.message)  # Output: Hello, SQLSpec!

Write SQL, define a schema, get typed objects back. Or use the query builder -- they're interchangeable:

from sqlspec import sql

# Builder API -- same driver, same result mapping
users = session.select(
    sql.select("id", "name", "email")
       .from_("users")
       .where("active = :active")
       .order_by("name")
       .limit(10),
    {"active": True},
    schema_type=User,
)

Features

  • Connection pooling -- sync and async adapters with a unified API across all supported drivers
  • Parameter binding and dialect translation -- powered by sqlglot, with a fluent query builder and .sql file loader
  • Result mapping -- map rows to Pydantic, msgspec, attrs, or dataclass models, or export to Arrow tables for pandas and Polars
  • Storage layer -- read and write Arrow tables to local files, fsspec, or object stores
  • Framework integrations -- Litestar plugin with DI, Starlette/FastAPI/Sanic middleware, Flask extension
  • Observability -- OpenTelemetry and Prometheus instrumentation, structured logging with correlation IDs
  • Event channels -- LISTEN/NOTIFY, Oracle AQ, and a portable polling fallback
  • Migrations -- schema versioning CLI built on Alembic

Documentation

Playground

Want to try it without installing anything? The interactive playground runs SQLSpec in your browser with a sandboxed Python runtime.

Reference Applications

  • PostgreSQL + Vertex AI Demo -- Vector search with pgvector and real-time chat using Litestar and Google ADK. Shows connection pooling, migrations, type-safe result mapping, vector embeddings, and response caching.
  • Oracle + Vertex AI Demo -- Oracle 23ai vector search with semantic similarity using HNSW indexes. Demonstrates NumPy array conversion, large object handling, and real-time performance metrics.

Contributing

Contributions are welcome -- whether that's bug reports, new adapter ideas, or pull requests. Take a look at the contributor guide to get started.

License

MIT

Project details


Release history Release notifications | RSS feed

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.48.2.tar.gz (3.4 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.48.2-py3-none-any.whl (1.2 MB view details)

Uploaded Python 3

sqlspec-0.48.2-cp314-cp314-win_amd64.whl (5.1 MB view details)

Uploaded CPython 3.14Windows x86-64

sqlspec-0.48.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.1 MB view details)

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

sqlspec-0.48.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (6.5 MB view details)

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

sqlspec-0.48.2-cp314-cp314-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sqlspec-0.48.2-cp313-cp313-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.13Windows x86-64

sqlspec-0.48.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.1 MB view details)

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

sqlspec-0.48.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (6.5 MB view details)

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

sqlspec-0.48.2-cp313-cp313-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sqlspec-0.48.2-cp312-cp312-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.12Windows x86-64

sqlspec-0.48.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.0 MB view details)

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

sqlspec-0.48.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (6.5 MB view details)

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

sqlspec-0.48.2-cp312-cp312-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sqlspec-0.48.2-cp311-cp311-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.11Windows x86-64

sqlspec-0.48.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.0 MB view details)

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

sqlspec-0.48.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (6.4 MB view details)

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

sqlspec-0.48.2-cp311-cp311-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sqlspec-0.48.2-cp310-cp310-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.10Windows x86-64

sqlspec-0.48.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.0 MB view details)

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

sqlspec-0.48.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (6.4 MB view details)

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

sqlspec-0.48.2-cp310-cp310-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for sqlspec-0.48.2.tar.gz
Algorithm Hash digest
SHA256 6906fae5e3b55e391a69e1d7195e92dca7d77bc3d3d2a7321e3d27361d42d062
MD5 a62c1483ea38edb65a4b18032608c0cf
BLAKE2b-256 05c5876296be67e5e8421e1327cbcebedc6afce92b9fa494a9326e605bae7992

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.48.2-py3-none-any.whl
  • Upload date:
  • Size: 1.2 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.48.2-py3-none-any.whl
Algorithm Hash digest
SHA256 d705ccc08e6d91c7dfe4f3bdcb12b1841cb275fb9342f1063f424ac9f3601cd3
MD5 7418a24dee283277d889c0ce278d6dcc
BLAKE2b-256 d2c1fbce7df6726f3322e24603c7d7145832478a71ca49e02bac6897dce18fb4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.48.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 5.1 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.48.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2ba34572e1387b3d8a33c0ea0b0a051851ab5480d4fdf118cd4b8d844c1181c4
MD5 0bf32268b1df535bfb42b2dce153b280
BLAKE2b-256 32062d5221df072c61ffc63d932b7909e2c7721dd47e1ebaf0138136d209c76f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.48.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 911aea275e7b4993c13014cc4e472b35a453360b3bbc575885d052578c72651f
MD5 c076efe904b49ff45202f4dc8dadd74c
BLAKE2b-256 749274d9e03c4592cc5d620e5d6aef4ff09a8ce95a84ba659e55bb7697186b5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.48.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.48.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.48.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a23447d2b24c0b5168b9ce58e0967a15a23bd06678b13d544205675d27243300
MD5 5bfbc8c4c8bcfd2e0da6b43c78cab69d
BLAKE2b-256 710039fca73cbe6eb528632c36dfc5188b398beb79325ff2f12241a44a4a96b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.48.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98027f2b358ecf510e4284f79c21fb24ab447ab728241cfba0d53bcbc4243947
MD5 b981ddd19d7ea686d1eadf4e1b4c8936
BLAKE2b-256 c95b05f8c72fce1ea530d9aaf1b8dbd263b1388ec045fd3c92bc087a60593898

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.48.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 5.0 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.48.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b9c97552834e67903691f05db9188d6835bd27408554065c87875d8785e535b6
MD5 58ec392187d8e15cae34f82bf4043c50
BLAKE2b-256 d01a09064c90f78789fb74fd25d14b31cbf3851a8745277143a55984d465ec4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.48.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f39e6344c41daefc601e4a41cdb72cd074d87a115fa44bee6f7e35ef4d50f9fb
MD5 ce9de6855cd321db95031c8591d534bc
BLAKE2b-256 3672ee709485278f5214e5bc41b7dd5e24c6c21f165d7ff8204346a873b98461

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.48.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.48.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.48.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 89b237cd89fa2ff5eb58665dfb56813ea86e87ccbbefc4499cbab3033cb6a155
MD5 aaa59e8772efbfb7f9fe92999df3f35e
BLAKE2b-256 9859000bb9eb73adf5bd0c85e92c7d4ce7d786582e6b945ce9fffdb87eb480ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.48.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 933f58a0d15ddddea7c36ccbe9f74c9efde105bd25729e225be888bb4da3f15e
MD5 3dfc863243e5a136632cdc7a680cbbe3
BLAKE2b-256 3ac8a2108de5ee4742eabc5cb1b2c952ea3b6c009539751798b8e732647762ac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.48.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 5.0 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.48.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bf21f0db9dfda2d97057576e34e2ea1c978e8bc8448f4eb59b131316f85f38db
MD5 3f8e26d3c1a22ca5f03d9e8a848e8dba
BLAKE2b-256 60499e1bbe0261c825c4f5eb91de1a6b17df7a2182d1a3fe9e1ce8f981d8a3f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.48.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ec7d6af147aa3f0b7b540abeffb68d568099e960df51005c06f95addf804ad6b
MD5 16af9934512ea32007ed2cb8fce861c8
BLAKE2b-256 4072dec7eccbf963e8cce547983eb494a81b3483986ce4164b1c1ae720a97ca5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.48.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.48.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.48.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 cc5940e37ede999f4de9a4bebcc960ddb7c1e2278e4b6c0125d590a70e52c66f
MD5 7ff08708db8fab32420e4d703da4871a
BLAKE2b-256 8bdd9e39af5e8ec1ed29fe708b7e0d047ba9c59cb2596316cbb2a22dd832b2b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.48.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad1f93aea33990fb44726c31210ceb96df311bbc37cfbaa220c939f43cf5ac82
MD5 1f0996e8437b9904a518a7ffd0efc4f3
BLAKE2b-256 be2db059c795fc901bb2e48ab1709375d779999a21903eb74280644f7a0130ff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.48.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.9 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.48.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 df1cc56b0c5755d961d81362bcc5f302e5c73a208161febe61db53fc9bfa2f32
MD5 877c0b897ab29aee5f8ada57ed76d69b
BLAKE2b-256 38aee5f589c034ebc97cbcffe32d610c3e87473fb8659ac8b9d7ac674e156d55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.48.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 52a51535b68d819a14c87e1ef1ea44c9d6422cdb9753f6f02569165e483d22c3
MD5 15c5cf4c694358388d537e55624c7084
BLAKE2b-256 6b676eb1a823888b399e5d8bace08eee407c41e72435975da7ab54b36512625f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.48.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.48.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.48.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7606582f06ffe6c0e65ed1c6aa57e6af04a1feb7faae797a2de91f3abe9d7ce8
MD5 ee662e78d09c1a9486e823cf1135eb0e
BLAKE2b-256 e946868ec22ab72e2092605b1e330a3f2146e12f6bfaf6b66f5b5e7c6f5b713e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.48.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b280db627248135d8be643688c7e1278a9bfe639c0401e4dbf74487fd0998f0c
MD5 67e31c003a71d5a8a73faf1843fb011e
BLAKE2b-256 14d69fd13f2bec49ceedd814185ade09adccdca24df6b65bd2132a1fcd012227

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.48.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.9 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.48.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 68b8ab7288f2eb5712d7562e2795e84b62454a237053e60cfb8f42cb833695ce
MD5 9f909123246e217c178f4b4af9f21075
BLAKE2b-256 efeee9bbca86355358bc54644ad1c95312dc10bb993cc1d9de5e4e3153c80780

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.48.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eaca74d5e6f7199da18bb14727be81457c17d8ad12ef2588379b0f31a1e4244a
MD5 2b390d13f80d02680a1105b063c7cb87
BLAKE2b-256 5ccc075972a8036aaa93feef2f306d6e8e799aeb4608a5ede00901e6e940cea7

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.48.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.48.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.48.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a3bffb32a93ef872d68de7f2aedb6f41543b4d65bf9dc1bfa939d96960be70cc
MD5 0280188bdee12401b00d6cafd305da7e
BLAKE2b-256 706e2fccc8cc2a0fb1a96fe2a9fb2fdacc5f3bc15045ad4a5e60db70a4499b83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.48.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 532015bee18feb4d03e93a5cb6424d4053a03144e0587b70acaeb45ef3c1cce9
MD5 06c31e686ce22d9b3be6a61bd164f74f
BLAKE2b-256 d142c1f6bbc86c5cc4097e6d7fab7e6180b112613d90868bf9a025fa77abbf1a

See more details on using hashes here.

Provenance

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page