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

Uploaded Python 3

sqlspec-0.48.1-cp314-cp314-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.14Windows x86-64

sqlspec-0.48.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.2 MB view details)

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

sqlspec-0.48.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (6.6 MB view details)

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

sqlspec-0.48.1-cp314-cp314-macosx_11_0_arm64.whl (5.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sqlspec-0.48.1-cp313-cp313-win_amd64.whl (5.1 MB view details)

Uploaded CPython 3.13Windows x86-64

sqlspec-0.48.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.2 MB view details)

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

sqlspec-0.48.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (6.7 MB view details)

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

sqlspec-0.48.1-cp313-cp313-macosx_11_0_arm64.whl (5.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sqlspec-0.48.1-cp312-cp312-win_amd64.whl (5.1 MB view details)

Uploaded CPython 3.12Windows x86-64

sqlspec-0.48.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.2 MB view details)

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

sqlspec-0.48.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (6.6 MB view details)

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

sqlspec-0.48.1-cp312-cp312-macosx_11_0_arm64.whl (5.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sqlspec-0.48.1-cp311-cp311-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.11Windows x86-64

sqlspec-0.48.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.1 MB view details)

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

sqlspec-0.48.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (6.5 MB view details)

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

sqlspec-0.48.1-cp311-cp311-macosx_11_0_arm64.whl (5.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sqlspec-0.48.1-cp310-cp310-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.10Windows x86-64

sqlspec-0.48.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.1 MB view details)

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

sqlspec-0.48.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (6.5 MB view details)

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

sqlspec-0.48.1-cp310-cp310-macosx_11_0_arm64.whl (5.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: sqlspec-0.48.1.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.1.tar.gz
Algorithm Hash digest
SHA256 a21bde6e5906f54b308803600563e45dfecf526bfd784bfe4c7b39d8350bf4ea
MD5 9641deaec68759056d6123962fbf6003
BLAKE2b-256 eb1debf9296043582f5737320e02263cc595f6d088991e105bf67bc7063a4d5e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.48.1-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.1-py3-none-any.whl
Algorithm Hash digest
SHA256 8303d53a33a37e8907489af43035fe5dc05bfc22801505d97994c9bdf82abf8a
MD5 530678ed0f6a7e1175694177d4985bac
BLAKE2b-256 077461d977077c89390d4ed88181d8cdf0cf62ad16105aada36e3ccbe55bbc83

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.48.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 5.2 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 99749ea2796dc968d487efab0c95ccd2b6ddd1fac35771ae76726ebaa04af157
MD5 4d017f2f53f304bd9c37dac2c9092652
BLAKE2b-256 c9078c1989fde789e8846af5f1dedc1a924875c4524a50f70eac32455a6ae32c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.48.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1fafd84ff09ae80a8e180ebd78ff9f3f30a9fd73f9be3f2e71128367b8863a12
MD5 1fa30cc4c526159ca8b479656f5a68eb
BLAKE2b-256 3b3866d92e7cd28cc908e1a1376d32922946cb2d9deaf471473140fc1a94cddb

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.48.1-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.1-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.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 52e29062e8d69d83f68882cdf4d4332a75ac9e4602c8957dc93badee2d2ebbab
MD5 abcffcf3f81426d235f671d5541b057a
BLAKE2b-256 f539a11a7e2c5b9055692eb4baf5e25160ac2fa8387c66c1bad7e4ae89afb264

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.48.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f95da11b77cb84b01bd1317c13fde107d8dd6433382d5fc6f8c3dcf30f474174
MD5 b8c3f1eb4602c97e0085da80f1b9bcdc
BLAKE2b-256 7a82598ad3bd476fe102009a07cebe570b9ebf419c48df677c696cba785250b8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.48.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 5.1 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 539ad8a539cb2c1e1438786217b8f030c6eaf45bbff8cd96af2406e55e8be688
MD5 e60142297342ae52c688985b0b87f801
BLAKE2b-256 74c5192d3fb285f240c879182698bc56839ce7f39f40eac8b0fc81549b59bcca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.48.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f0ca752d6a265963cbe08eeb8ed47c5cb83028511d23d57588f89d19f52d9f2
MD5 7e5ba15c8768beba60b6c97ec9a32272
BLAKE2b-256 0c2508150799818d50a0e51ac5773c3c5f822e4e6c0104d6a536627adc5ec5e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.48.1-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.1-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.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 386835656dc51feebd3eab64ac3f25211bb96eb26c09a946e04d12b4998ea89d
MD5 49b28cd21daccfb54503117b5897fdf1
BLAKE2b-256 81527c98fe72aab992706133279b5c0d38ef6df12ed62cebd4a99255ee7133c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.48.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d80a2cfbb4bf664827078df59acf2fd252680409925884973be661a34fb80bc9
MD5 35c209379cd6b24ea04a6cd88a2cda12
BLAKE2b-256 cf2d888bb95554ca8b96e5b07ce1cf382c3df7391f4e1d5156d1161a4b1d5af2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.48.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 5.1 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 21e2357af6a40967c9a0588601582037d9323b41a70f88eb822186d2bb868b03
MD5 181a67687d86be910070a32ebc0953b9
BLAKE2b-256 a5a8b7b5e2faabc5757d8c0dcc6883d3b15caf5c8034085a5b8b66a018e4ba21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.48.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 47bc437e3ced3479ed1441b839aa89ad77c9969a4c633883580a1fff9f83d8c3
MD5 302079f170de9fd49062e76d3e64611f
BLAKE2b-256 f1f60f404e3f77358777ab524221e176452b1b8aea60104f9e73e08b745f5b14

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.48.1-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.1-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.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4f1bba5997e523c39d14a8cf97102f41e78aa699471228ec5e6b68820e3fb2c5
MD5 58d536e98b0406b750a4f92cb562300b
BLAKE2b-256 a17b46c3b95ba0eba7173a0c92a459beaddd3ef10b578d9bde58eda37732b134

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.48.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf635e40ebf14780472393616844887a648413dd7922319129c0660068203e1a
MD5 30e218649b9f4deb12489142941c835f
BLAKE2b-256 892bd69dbe56a670482cc791f94c9a2f8120933ae944a6899ffff3ec2619efa9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.48.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 5.0 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3fe5cac421d37c70407deecd374aeb8ba8a8806ac73d5ac367476a13d8ebfec0
MD5 14927286b9824417fcf6151b2a5aa0f0
BLAKE2b-256 012fb678722e89c13e379db20573e0db73f8bffdc409093f4ff49ed6680c85d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.48.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9657460212548ff420cb2fc8e2024dec34042f3528377a68ce17599be981950e
MD5 5f9e45dca0d1952ee81d1d6f9d5b77c1
BLAKE2b-256 e5674a1f503f254d7e94d4d01cceac5abeb9d7c2301d201670e4851ac03b7237

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.48.1-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.1-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.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2a2ddbccd194c79888c016a3367cba8e49fad7d5ad9030fa5deef0a05e540056
MD5 4ed376c823015df945f007048f9992a6
BLAKE2b-256 af1237e2930952f0ebb78aa6895a32586f05d428edf570798a8c52ac4ba858f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.48.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba8f81e9c8606b318d824ffa737c4c4e840ec3c548ddf260b3015d61c36bd22b
MD5 1bf51d33cac1de1ac9a6cfcd129bcf52
BLAKE2b-256 55764f7dc948adfd351cb01bd3c4596ac56439637238dfd44042d8a9a378a739

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.48.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 5.0 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4b0720c216c557fd0c4dce88a7fbdd845916d61283d1b5a5a4bd3b9ac8f17728
MD5 2553aea9a283152f3c02e2a1e2e24b3c
BLAKE2b-256 4d3b2a0fa7a7626c57d449415e0c0871e614cbf68bc25f0e833f9916d4134e19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.48.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 24fdbf9526807d0d3be46b1f051b6830005bfd02c024fc116f1eb6a0d2af4c33
MD5 98c3ebc5f63e82d8fc399f8042b4a17c
BLAKE2b-256 b68ef56a67df2f03e54aa527101f6445300b2611e0b2fdbdd925956f257d7a3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.48.1-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.1-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.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a5010c29af1b223f098f0ed08406b078e59444d5ab4c5515593c8d6d49ae2ed1
MD5 c7f7e7626b5288a62ca8f360fabd87ee
BLAKE2b-256 32a7da56b92b87e4054398b0ee409ccf0a1d5c754f309ab1e2d64798d8e21723

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.48.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e13d9fc3f1c1ca8a4c723515cfbdb42af6ad2d4c9974e12d7277c3d522aa0d78
MD5 8435a736e021bbe34602e46f70751005
BLAKE2b-256 6a855fbd34d63157d48ee8f1f28f3f949e989090c03f4764be377095093585e2

See more details on using hashes here.

Provenance

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