Skip to main content

SQLSpec

Type-safe SQL execution for Python, without an ORM.

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. SQLSpec handles connections, parameter binding, and dialect translation. It maps results back to typed Python objects. It uses sqlglot under the hood. Queries are parsed, validated, and optimized before they hit the database.

Area Support
One API The same session and result APIs with sync or async drivers.
Databases PostgreSQL, SQLite, DuckDB, MySQL, SQL Server, Oracle, CockroachDB, BigQuery, Spanner, and supported Arrow Database Connectivity backends such as Snowflake, Flight SQL, and GizmoSQL.
Data tools Typed result mapping, Arrow export, built-in storage, and native bulk ingest where the adapter supports it.
Frameworks 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. The getting started guide covers adapter installation and the query builder.

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.56.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.56.0-py3-none-any.whl (1.5 MB view details)

Uploaded Python 3

sqlspec-0.56.0-cp314-cp314-win_amd64.whl (6.8 MB view details)

Uploaded CPython 3.14Windows x86-64

sqlspec-0.56.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.4 MB view details)

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

sqlspec-0.56.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (9.1 MB view details)

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

sqlspec-0.56.0-cp314-cp314-macosx_11_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sqlspec-0.56.0-cp313-cp313-win_amd64.whl (6.7 MB view details)

Uploaded CPython 3.13Windows x86-64

sqlspec-0.56.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.4 MB view details)

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

sqlspec-0.56.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (9.1 MB view details)

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

sqlspec-0.56.0-cp313-cp313-macosx_11_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sqlspec-0.56.0-cp312-cp312-win_amd64.whl (6.7 MB view details)

Uploaded CPython 3.12Windows x86-64

sqlspec-0.56.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.4 MB view details)

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

sqlspec-0.56.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (9.0 MB view details)

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

sqlspec-0.56.0-cp312-cp312-macosx_11_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sqlspec-0.56.0-cp311-cp311-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.11Windows x86-64

sqlspec-0.56.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.3 MB view details)

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

sqlspec-0.56.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (8.9 MB view details)

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

sqlspec-0.56.0-cp311-cp311-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sqlspec-0.56.0-cp310-cp310-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.10Windows x86-64

sqlspec-0.56.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.3 MB view details)

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

sqlspec-0.56.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (8.9 MB view details)

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

sqlspec-0.56.0-cp310-cp310-macosx_11_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: sqlspec-0.56.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.14

File hashes

Hashes for sqlspec-0.56.0.tar.gz
Algorithm Hash digest
SHA256 0d553f386e2c331c64b4f7f7af70395061ea3172d38bd33b6e338459fd77f8b0
MD5 40a40279b33588daf1fb1e224047c007
BLAKE2b-256 f3ffd816d9ab5408430286ef67409766bf2f7a01caad0975d77c243d24c4cf60

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.56.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.14

File hashes

Hashes for sqlspec-0.56.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0041bbf5cf23154aaff6f0483a924a3a58ac99392bccb1c276c04b01097b9a0e
MD5 b32826b9240dfcab77cb4623efaae128
BLAKE2b-256 af2e248ed1780b5587a6b74f52cdeabcab3ea906566ea72e848887a84cacc17c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.56.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 6.8 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for sqlspec-0.56.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 983c4385949d5bbc3f2a01bf7ecb3f860ae5d99d36d463de0534643e23a2f8fc
MD5 bc3bff00b635f4585ed35cdb64e874a8
BLAKE2b-256 b36d16168b2acd90f7a1c1f3e97987e3a79a84bfc56494e5d14f47b54493d6d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.56.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea93410bcfa9e9a3db456f64eefd3a6b672a097d459c94f5099a71eb5738fc20
MD5 48dbcb9e1c43d0e09707c06b9674f6a7
BLAKE2b-256 093cd648f7f02f485d1458ed2aa63a653a9cffafd9c8c4d54cbf461a6aaaa4c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.56.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.56.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.56.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0b248d391666bbaf69b8244d20f60c5e194766a7907eef45c669af9d1bb5649a
MD5 84282e3da2e55e0b2a36b75982ff1f41
BLAKE2b-256 93eee911854c46f0f8b550c4f7d236c1a43aa9fb9c58ccf56dc6728d61afa54a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.56.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55dca6b7437ce6acb5324e52c5516677410db5c5f70f9aea833c1f68eff3abf3
MD5 7008bcebffbd25566cecee9d2350774a
BLAKE2b-256 ae669295de7ecef97a6d819516839e6f1b98840226026d705844b98c0822184c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.56.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 6.7 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for sqlspec-0.56.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 59eada01b0a0eea71bc4443956e1ed54199749b07836785c4d54f346782501fa
MD5 593400d3bc53e328a28fab5fc77bae06
BLAKE2b-256 e4f55a08d57312b31513cb48839086c42021b2da2684f0acfcb53ca420076295

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.56.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d48c7719d7cdb6cadf2bbfe990ee2461fbdd858cac52f87670709b9ab5cbb83c
MD5 40b96cd031aa151c6db8b0b04e985ff8
BLAKE2b-256 d2c935f99eba5021a0030885ada23892abbf3e40a8e8a1aa6ed893b5b0fbdc30

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.56.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.56.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.56.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 239e6197fd2ed2cca945d710c31bd7fcfd57a124970c0d60d3f0a38113021533
MD5 b586302578c4ef83f1885c219dbfc3c9
BLAKE2b-256 79d2d3f8f95b38b9cc6f544e2c5f609ab4459b5ef99a0f0fa44ea8ea55e9350f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.56.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91c7c60964d06e16ab6c6d34c7e376526865f409e632a87817b9e809ae99a067
MD5 4f1e0902026f448883f1209eb6aebc76
BLAKE2b-256 93fea1c2db96356b4952ae3df4f5c526be8f30a592c0c59cadf5ad02f1e1d72e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.56.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 6.7 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for sqlspec-0.56.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6e047b7210367a796711adfe3fe8522b5922940bf750d5f98da7eb18a467e574
MD5 892c6f58193bc586d57b645ca6f1d111
BLAKE2b-256 4e2ba087ab4468f4b24683bf9f4fb4de0f4753458ba713d821f24e80e2850d7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.56.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 010f1b61c8ca49c96dc8c056be82740b5114e66e5d0552b6eaf534d32c1887b4
MD5 3601e9093b06ea975fc2d65513e0c8ae
BLAKE2b-256 bcd28b72b977e654c25b6d9d6c1847610da1fbab02fd2b6f230d6a574bbdeab1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.56.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.56.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.56.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f31935581d3401088dd9c816434dbecdd1074d0e8b06df13ae6d684a886d4561
MD5 a7bf7f83f5e102d5c8a9ecf077369182
BLAKE2b-256 349a8cbf4858716f974de662ae6a22709d780dd47549c5ba29328f433b8140d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.56.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82afbdf3dbac2ef85b8005eb424a9e21d9d6a1f29db27c902290693bf3ece6db
MD5 5e884afc52bd22021c70ff6de95f7145
BLAKE2b-256 974ac85361d43933a4ec0dbd8a3ee953b983b0431e383d54c5a7176b5c0351ac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.56.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for sqlspec-0.56.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3457a30bcdeadb5de15f6d77cdc2d667f0bc58c65184204458136a34682c254d
MD5 c5f73c2ebc41615b43ec25e7cb349f71
BLAKE2b-256 765862c20c9efa771180ded217ae79e9823fd7a7e9665e3975e17fd52ce5763f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.56.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 660d3be35471acde36f73ccaad48cdb6891240ceab9f41c022aeeb5e91e2e313
MD5 59ada1023cc48f4141b15eb6a7b880fe
BLAKE2b-256 fc7b79cd620c996d110eb0e37aa5a62c69d72a9b1852bf200affa3542f2b9436

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.56.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.56.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.56.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c391b11e4fa1c02f484098cf4bce51d9524c47d45c6da823bae41f11abffec1d
MD5 d29b3d2c56f16d3e9feefe4dc8368c11
BLAKE2b-256 6953daf3d64beb8066f046a82b41d0da1ceed21eef1feed7ba38341df613beb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.56.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16f84958986e785ed62f17d75e7436d62efb7e24c63237635af884fba5085ad0
MD5 c97b5c71eecac51f242736c9efdeca76
BLAKE2b-256 a763a8ef03ac886180a8117ee146eeb5bdd82548c4ad521e05ecbede5df182bb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.56.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for sqlspec-0.56.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ea4842e07ccc2e664df67cb08049bfd39f9bd38a2e21c19673e3e84bc215593d
MD5 961fd4467fbb7d7b69093302a0025ebb
BLAKE2b-256 88604dc9487886f0152e5e280206d50d53d2431c96ba8fedd963a230d5c73fb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.56.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea2315d19ab1579cceac5043df632b53f7a9a0bd6bb10b328e5a89cc2bf20f32
MD5 dbfeb98e834c5a309a196223a199888a
BLAKE2b-256 6fb97896db653d001d4c59459d9c4819939e50f64762212499156e2116d4a5aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.56.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.56.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.56.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0b92a3414b08b33d138d7647bb3df152fa60e3d30960f27f8e46d1ba5e09da6f
MD5 a9119558c54a97ec55e19c17b1db0efa
BLAKE2b-256 917e94785eb9cb7c31ffcd4b8392aa98ffc282fa79c8bd5ac906d1ed871859fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.56.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d02ac6058f1a6dd639aaaed50471aed10f5ff6e4750e39231372baaac7e56c0
MD5 8a6ceedeac919a082c91fe96a15eab7c
BLAKE2b-256 56b980b46759d9ed1aefc0622d2afa230cabfee00797438c42a160fc79341c52

See more details on using hashes here.

Provenance

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