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

Uploaded Python 3

sqlspec-0.50.0-cp314-cp314-win_amd64.whl (5.5 MB view details)

Uploaded CPython 3.14Windows x86-64

sqlspec-0.50.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.8 MB view details)

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

sqlspec-0.50.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (7.3 MB view details)

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

sqlspec-0.50.0-cp314-cp314-macosx_11_0_arm64.whl (6.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sqlspec-0.50.0-cp313-cp313-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.13Windows x86-64

sqlspec-0.50.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.8 MB view details)

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

sqlspec-0.50.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (7.3 MB view details)

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

sqlspec-0.50.0-cp313-cp313-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sqlspec-0.50.0-cp312-cp312-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.12Windows x86-64

sqlspec-0.50.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.7 MB view details)

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

sqlspec-0.50.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (7.3 MB view details)

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

sqlspec-0.50.0-cp312-cp312-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sqlspec-0.50.0-cp311-cp311-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.11Windows x86-64

sqlspec-0.50.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.6 MB view details)

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

sqlspec-0.50.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (7.1 MB view details)

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

sqlspec-0.50.0-cp311-cp311-macosx_11_0_arm64.whl (6.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sqlspec-0.50.0-cp310-cp310-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.10Windows x86-64

sqlspec-0.50.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.7 MB view details)

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

sqlspec-0.50.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (7.2 MB view details)

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

sqlspec-0.50.0-cp310-cp310-macosx_11_0_arm64.whl (6.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: sqlspec-0.50.0.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.50.0.tar.gz
Algorithm Hash digest
SHA256 1595c4367e597b32f562b88b3b18937d18b2c241fadc8922177fa50fdb889501
MD5 be8ec87bfec11919b9b91e5b98cfbe4c
BLAKE2b-256 9bca651d664fa7dae559e515842b56dc240453d103a665f1d5eadd1debf09cf1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.50.0-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.50.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a6701625e77bb67e2322cc8e792cfb82dc00b68118f7f9966eac19e8d5b25366
MD5 4c62a2c368830e6998fd660324eae16b
BLAKE2b-256 63265aaf7d7169e25cebbc49ff7779e8161e9bd741fa4a9db1a860ee1067ea55

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.50.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 5.5 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.50.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9690cf03e18511d227714a4ffefae65bb6ac4b036fa893204cac6f64031bc00d
MD5 b746eb0e7bc20762f2f5ee8bd11603c5
BLAKE2b-256 9359b5717933cd1bd89d0601b6c16ccc82b0b8f9dc4a8abfeea403bbfdf65fab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.50.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a6698717abb3e2e88cd615fe1aadc74c3a78fef70de12644e0535d723a296144
MD5 2f113cb64b34dda37e6add0f3ae89d55
BLAKE2b-256 387df74feb222bd8fc03cab3c777e2baa0542a9a356b4ee83ac9445ac03004d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.50.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.50.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.50.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e7e2437592f03dd15021b6350363cd00cc66f76bc9c360b4a5a8879401b5dfc0
MD5 737b7be772d44d3b6bc84f0ef540e12c
BLAKE2b-256 c38d637f32b85e592c64c6fbb9e0eea70a771a07bb720dc1b42c3b97db24343a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.50.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a289627d027566c9e5e076e972bd4c1073b91054c442474c991d625dc136479d
MD5 e760c2026c2d6fc7f485b7ab13dd2830
BLAKE2b-256 6a9d74e42770a16b6acf3022c226dcf20add7c9b8d58a6c53351dcf9dd05f107

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.50.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 5.4 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.50.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cf6f87aafa2a49d58e04282610242f4e44767ff4db9d8e4844ca2fbbaad3a3ab
MD5 a7d63c9089a658db136ad00df287ead7
BLAKE2b-256 75e6b45d2ad5898d007740c15d1d7ef6ba4bb2912a8b83a68bbdad60f91602df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.50.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1de0834302d2d96c74dd95668bbf63d45ae94013932ddba759608f239239c6fc
MD5 b2905ad312561d5f9854990fa5a020da
BLAKE2b-256 f309caabdb7979c62867ce1ab80add2d8b2e7d06aa8f4dcd5e55cce05879401e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.50.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.50.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.50.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ed93b26a27bdb463f42447b3a091d884ec3176bf5a85243e498275e77d3a8933
MD5 a5ad4f3ea94fab35ca21c5f139ecc978
BLAKE2b-256 dbaa8b25de60ef5213a827c22db8a535f6a3848ee7df738b2935e8164854d777

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.50.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30de9873ece9af678158830fc9ac2ca6279e20d9e31757230677c0c0ad9369e2
MD5 61b9058f82073fcae75c846030063e6d
BLAKE2b-256 feab3ee66b8765958a834fe93c7c94ea9cae3ae3039b1a02c5499710cd02f0b1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.50.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 5.4 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.50.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 96e1497df6a7f2084458d29b6ef0f50f995edfc39aee2135503970d4f4d7a877
MD5 b3025387da2454ae7e93713e1824aeee
BLAKE2b-256 18ba493fb417fdb47958b716c13bd791ebc230a05d1c734a9da2adf31f406b07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.50.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 860c32d1de172170e4d9f2c6e3af4fbcf779e2f81ded4e4f07bbc80877c783ff
MD5 566224f610c7a030a3c3105f8789040a
BLAKE2b-256 2d5b910ac2a52b985a7ac8dc5f7fe7c07fc5716a994fedb79f9dd38828d5804a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.50.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.50.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.50.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b8bda42773371925bc2efcd537812514e1d2f72102c2be30dba559937fc80ff7
MD5 b77dde37722ce2fb42d10d2cc7ecb6bb
BLAKE2b-256 0d6fb0dd36ed27eed7398b49a734312645fb004f3685400ed58e3488d410603a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.50.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 151e9f2959d7543d69aa816faf8d752b755c7850abeda779fb5027b8d13bdbf3
MD5 4c7bc82b35fc986e6bf4de096aa5e158
BLAKE2b-256 e3eddeb1804568d412eef67d204b470c2fc78b3032e1c6da7c39c383918be554

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.50.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 5.4 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.50.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1906c6a919649d7e74202e955a5268940722cc6387905f598bd91e44f4d6c288
MD5 81013f3726196033236589ea572db11b
BLAKE2b-256 32fec8b5db2ca1e0500c52d33255697c37f0e1c9156612681138563e2bb757b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.50.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4b13920ff428884baf943bacfed37094870a4e1809a94b2bb59b9c0d9d822371
MD5 b0137fc07a0e7c6ca587bf419e21e6a6
BLAKE2b-256 5011a0b1dfa51fcf709cc3c775b4b3250449ad31ae8772bd74e8f7bda01e2113

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.50.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.50.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.50.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0b4dcf9ff913adea22c95c4b83d44a93993e365b1072fb18b99ac24053d4c7c0
MD5 ca916f7f1b301fe8484e194ad4e81bd6
BLAKE2b-256 2e193464f2bcd0139f9e6ac8bb9a8ef5990995c1111e025ecba0fbbef68f2c33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.50.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dae75ee47145b588d21bf8ea556b0b73bd4862afc6abc1d03fb151ceca6fc641
MD5 aab7e85a8280de1a12083462ce4935f9
BLAKE2b-256 25bbe466030fbb097206d1ec9199d95f05da2a1bf0862a3cb43812b7e8f6351a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.50.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 5.4 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.50.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fb0847960c216e609ba2ff489640f674ab34cc636f21ffa490bb256ab51a4f90
MD5 a2ea55e7fd97c7265bac855f1c132897
BLAKE2b-256 4a486fe6cba265433712d0fb69c28a134f795bcddb36da0c1e8dc189f02cad00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.50.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 df23e32bdcf2649f76fab51173044f50d77e6192d37472b08d0804b6891bad55
MD5 57be72c04478dd43aec6a169fc1fea32
BLAKE2b-256 d124e34c74b5f229c9d015295181f40f378892d1cb3d3695387dab65ee290711

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.50.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.50.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.50.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 07e6a2be4ecad14726587509790cd57874a1e58ef7fac292bfaab7fe49fc20ef
MD5 93c6931c43f0bbf60e85ee5d3eb6ba2d
BLAKE2b-256 61c44ec3cfd8940eecc9974bbc5f8900606a4d3c2e2c69fc2c8f2b00dc26ddac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.50.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6dd2898bce67182736cf0fe1dcdc123e4ca7f7fb662ff093d8d359f50c3ca706
MD5 f63c9945c0c44c238d0106cc5ed451ef
BLAKE2b-256 7aabb479f55cd9ce2e57c387cda39dfc74e27eab6a30c2fdc466f891499a5b8a

See more details on using hashes here.

Provenance

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

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