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

Uploaded Python 3

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

Uploaded CPython 3.14Windows x86-64

sqlspec-0.50.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sqlspec-0.50.1-cp313-cp313-win_amd64.whl (5.5 MB view details)

Uploaded CPython 3.13Windows x86-64

sqlspec-0.50.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

sqlspec-0.50.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

sqlspec-0.50.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.7 MB view details)

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

sqlspec-0.50.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (6.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

sqlspec-0.50.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: sqlspec-0.50.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.50.1.tar.gz
Algorithm Hash digest
SHA256 8b1c56f7aabb8e21d4953271152a5cf810ef06da81b24a21a2d05f12564f1034
MD5 f60eae072b8de6264ff0542bf56b139b
BLAKE2b-256 134bbdb6d01830d3f1e173a9edf7261408f5cb60262138f05b8b39d69e6c332b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.50.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.50.1-py3-none-any.whl
Algorithm Hash digest
SHA256 4c49bccd32e8163431e7a53d2bfa4c3649392bdcfa9a3ab4bfe0a8f73a07084f
MD5 2117a2ba770922ff270b2d6db23ca8b2
BLAKE2b-256 780804d81b68d8750022ddaf96a35f6656b4dd4a7e5a7664058b2e1b6543c923

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.50.1-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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8e5a3aa4bcabda950e9a8ecdc882ca067c8c92eae0e73ea52522e5bfd8ebb87b
MD5 76ad22f293537ef2baba01eef6c0636b
BLAKE2b-256 c6ae78d2b353405810cd3a93f82ba29508139771b3e56ef390927d487f3c8991

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.50.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b75d6be44d8debd0fd73d745a368f0d891f01d163328c9950332a07ed9adcf34
MD5 e33c5dc95b30be01b8d2a66660139466
BLAKE2b-256 6dbcc2b723400e166f28992984817544d43d6aebd9b34e206878f8d348591fc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.50.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.50.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.50.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 179016a3c951e56919bad0bfd648f34a1680f9e222fd90a456cf1c7da97d5f79
MD5 c147dd71c2324f3fea6a748808dd1e7c
BLAKE2b-256 b67539fb6e12b24a811a05ad5cd79208ba0ba0359acbeeb510047da0a56446a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.50.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7aaed86d8881b7643d4e11b42fd3ec452208d481e6ad1d9898e9f511d5ceb566
MD5 c79058ba2d510b7ace9a4a3132d91ce2
BLAKE2b-256 551ee36fc5c8a653cb40ef84260a656263cae24c89cd29fa60b654302996ab1f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.50.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 5.5 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 52dfbe159d4a819f8c5d48b81c4f3c44da3613934238ee35c549ff351bd16e9e
MD5 882558c6d5aa44932c29d038cee7e729
BLAKE2b-256 603d7169e9246155934e78f07f5043bc4e1acfa4968dc483d6c807631b3dc4a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.50.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 262506815a867eff1004fc9470ad16bc7268506f711a403b54282c65af862dca
MD5 5c7449d26b9fd7dc67838892dbe01c07
BLAKE2b-256 c927aceb243c6a024500c74c04d34fd13d01f43321e13eb97572bf17f493fbfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.50.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.50.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.50.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 033e782799d59edf38836af3b8e3fd54f38278e24cce47c54361a9448c0cf936
MD5 0f20cf1603fb80ed693d7b22fb47e03e
BLAKE2b-256 2cec4b0dab3c6bcc0454a9ae21743c89c13402133a9d1e6942577bf65cd0c388

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.50.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7cac1bf79d5b3936fd70dc9e6a4925b733579f0d15ed341b52a3894db20fb6a
MD5 d124beb4600e18912eaff90b478d50ac
BLAKE2b-256 0d27f7db8f541bfe8ef6c1b5635c59ee8b308b59d8545472251e94c15a4f7a0f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.50.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 967f06892617d61e10ff2b64fe8826a2a8a618ab8b77fb042b57fd874ba95a38
MD5 03c0089a31c2eabd6b07b192637745b3
BLAKE2b-256 31d13328668d74a107aa13fcdf7d8cec6bfb755977356dabcb6a5bd91929dd30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.50.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cfaecb86d052e856bf6c86af714e24d1ff941ce23f580ede66bdfe1c954d7204
MD5 ad236edd119dba13d515fd21c3c1372f
BLAKE2b-256 50c07fb2c01c29c033b18f85959bd2ff7513952ce72f4cdeff1348c25cbd6246

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.50.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.50.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.50.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0277e16535c1669bda383459173c06c7fb61dad81c941c369a14723fd014d254
MD5 a661baf6141389cd6c71d222a74be8eb
BLAKE2b-256 c702f5ed000f1154494bf0c19b64f0cfd9382313bd9c705b3ee9e27d0ef15179

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.50.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7eb1fb021306be66c9e6b0d4dca3bf38c5de537ea7b51b2b8418f3cc3fa10b8a
MD5 e006679de15bb06db3114ab3a967f0fe
BLAKE2b-256 49dc4dc7a21be171673de7bec5b7402c08d6717ef1a5436775e933051038f9da

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.50.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9f8d2a6c6ab79508d99af8900d2575323dfceb010aef6a57a60147442e61719f
MD5 2df746130b86f3e197dd0194db2cb4d4
BLAKE2b-256 0b83205cd526cfa9a9c0bd2fab650c816a57c9c63726b75c5fab3d45d07b3b71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.50.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 198e14d3ca66225c77056d8c008a28bdd58f0cbc957920fc70ac796c12ecbeb9
MD5 7ea42819af05506d43d4b0fcc0a1938d
BLAKE2b-256 cfa9030e79553159f530da4d7479eaae1588faee0c46f3c2bbb3e3ebce1b1ca3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.50.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.50.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.50.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8f7e02764a7426c315e79706f8aab658d0a87d7fa25b02f60ee67949255fb9c6
MD5 0c4e832a4cf67a980613faba3baada2d
BLAKE2b-256 8f58a06d7d2b3229cdc8f52698a22bb4f52070b3959638bf5c9b8728cc9f1c78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.50.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9da7545c35254e8c71bda3d7a4a85c1025f99c66262c0540f835b6123fc9c61b
MD5 e98272e3903a891f6e5aadd1f0900f13
BLAKE2b-256 ed9f8592aebf2b466423a93d315840883b91df68454e2c04a2dc77e489b19f8e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.50.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1f41b5f737256fb2f3284961edb46b756cf0e64bbf165b74ed301a41780f657a
MD5 947044c958c1af5f5512aae3a203cb6b
BLAKE2b-256 aa22c93ab8bf5b6abf966e651af6b683cf286779d748c61bcb9d6788b8bdd471

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.50.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ae120fc2014f4fc599162e74c1f910a2228c12c41a9568f87f8fe0ba9fc82fb
MD5 feaaf958c5459af5d09bd512ab335c6a
BLAKE2b-256 d4e381483bc84998d7b6afe879debc69df53316d80c10c18c5a0600a5ef933c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.50.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.50.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.50.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6db413e120ce74ca172fbac9a5476c70128b54c4aad6df5faafca2da547c212e
MD5 facbd835dd5097c06822eff30555b815
BLAKE2b-256 4b7811e038753c55627544742cf8959d81ee8412889db8ab637fc9cb33827320

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.50.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53118b80cde3d15ac1d32e1c3c7463bd73b21153edb7d6f919a4c939c1abd83e
MD5 e3993bbf9486fd3262baabb97168632b
BLAKE2b-256 72ee8d4d4e4096957b83e7361ab718e88dbe6b9b03529fa5261f47e71ccc61cb

See more details on using hashes here.

Provenance

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