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.52.0.tar.gz (3.6 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.52.0-py3-none-any.whl (1.3 MB view details)

Uploaded Python 3

sqlspec-0.52.0-cp314-cp314-win_amd64.whl (5.7 MB view details)

Uploaded CPython 3.14Windows x86-64

sqlspec-0.52.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.0 MB view details)

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

sqlspec-0.52.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (7.5 MB view details)

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

sqlspec-0.52.0-cp314-cp314-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sqlspec-0.52.0-cp313-cp313-win_amd64.whl (5.6 MB view details)

Uploaded CPython 3.13Windows x86-64

sqlspec-0.52.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.0 MB view details)

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

sqlspec-0.52.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (7.5 MB view details)

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

sqlspec-0.52.0-cp313-cp313-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sqlspec-0.52.0-cp312-cp312-win_amd64.whl (5.6 MB view details)

Uploaded CPython 3.12Windows x86-64

sqlspec-0.52.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.9 MB view details)

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

sqlspec-0.52.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (7.5 MB view details)

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

sqlspec-0.52.0-cp312-cp312-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sqlspec-0.52.0-cp311-cp311-win_amd64.whl (5.6 MB view details)

Uploaded CPython 3.11Windows x86-64

sqlspec-0.52.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.9 MB view details)

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

sqlspec-0.52.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (7.3 MB view details)

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

sqlspec-0.52.0-cp311-cp311-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sqlspec-0.52.0-cp310-cp310-win_amd64.whl (5.6 MB view details)

Uploaded CPython 3.10Windows x86-64

sqlspec-0.52.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.9 MB view details)

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

sqlspec-0.52.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (7.4 MB view details)

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

sqlspec-0.52.0-cp310-cp310-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for sqlspec-0.52.0.tar.gz
Algorithm Hash digest
SHA256 0fe1e0adf678ace58f479186cd045649caaafc05eb5d3bc01fd21f0279bf5744
MD5 99462747be481dff3b18b57fa66b7f7a
BLAKE2b-256 0b73e38cb690aa91d6d5a4ea2641d5a58812df387ef36f7aa19330c17a688690

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.52.0-py3-none-any.whl
  • Upload date:
  • Size: 1.3 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.52.0-py3-none-any.whl
Algorithm Hash digest
SHA256 40e50294d2d12cfb0326c5076129a8259de4d3db8acbf7d5b5c9f23ce4010b28
MD5 54fba6fee859bb87c86304b3d493908c
BLAKE2b-256 7042472ad71d074c78a96be0af6f1dd09460468ede371cba092c03b71fbb4a8f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.52.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 5.7 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.52.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 33b0d958216d966258012e4710d76fc424a83dba84fc53e2de2eda82ca0fc4f4
MD5 c04ae34a5efd9bd7c3083ece0426fa7e
BLAKE2b-256 c8f4a72c04b8e808d04800fa849483b4a5596583466412649d1e519a9c49c9c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.52.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 706668ff9fa99a77c54b98b6c5a10a53f18d8601759ff445a634a49a2e66e605
MD5 8c02c4126daa7046c3ab523216cd5434
BLAKE2b-256 5af23129c9d5513cfe44553ab9412f15742f39d853da6ee048064e4b65dc621f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.52.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.52.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.52.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 dadac8c218a473bbeb2a162d661e35893815ab31101adc86e181b692bab3bfaa
MD5 2ea735541302a52420d315096a452e9f
BLAKE2b-256 0bb7178347474c3df807aff7cb9fc7f7d082729c5f930acf88f9a089467add22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.52.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 295f13bf95c47abe814593c588e8e7e7bbd84b8c476e2c269b32c7256216b7cc
MD5 82e21e0f7f107e050fc9d798da43250f
BLAKE2b-256 8f6d4b20e73ec90d62d11d57447023043440d61ac0a8d6955ac8592b5aecab14

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.52.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 5.6 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.52.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 af76a0135fcba3e7435dc11f690d0bfe33f6f1ba2d5945d45b86cfa6baba0da6
MD5 1218c6095ce053cd4d56663680f29b39
BLAKE2b-256 ada75f38e1f43bbb46adeebe53aa9746dbf6b42436900dfb0d48ecfae8603770

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.52.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9b03ea51eb9686ca5d79407c18cb3df9b77859d3fea71badd12d2250ad9e8257
MD5 cdfc319ec163132e13f7224d1d37194b
BLAKE2b-256 a6fb0cf4d4e1008e8a5debeb6ca69d55bb94922dd136584527f0e825a12b9a16

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.52.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.52.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.52.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 29c6ba76a57f6064586baeca14f02141952eb69b3e6087a882426a50bc3bc2f5
MD5 3e8a43cc3678d7ae46cf981e8c46cd43
BLAKE2b-256 14d64248df4a7c9b95e49f64ef20d26a6c9b467b2b47ef570b82c083d00a656c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.52.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 549f898f1327b91f15c0fd5986dbcd4c7a05c6e037eb3724854f8e5fcf6a4e6a
MD5 cd01741b3533b2f3a8329d39b88f009e
BLAKE2b-256 4158e86b8e8332a819d9a0d79e2d3cf8bf789d75e39396c400e4b597c6b9dae6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.52.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 5.6 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.52.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 337a30bcfb6cc2c3638ad1560d89783e7040ec28d8f6e2b5dcda523268270052
MD5 eabb62d640d54beb44143f99f2356e43
BLAKE2b-256 7199ff88fcf9f08b476c0881e0c72ae2c3aa0a62784bf7464afb1c9b5dc204d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.52.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fb4699b0981d763935c0fff47f7733a95e7858c960b0886d3a39ae90835d7ea1
MD5 06eb829e9804e977e135a3c41715a67f
BLAKE2b-256 b466587f5b12ecaacfb91bf1129e6f687dae19782c934ff442f7a6473752c7aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.52.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.52.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.52.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 48729fe84014eca247e9bc642008d7465382bb883c0ef8398f7fa0d6f06708bc
MD5 6074eb3cdd1431b2de5e3b6aefd0b05d
BLAKE2b-256 7027ffce81616dca159f0058e58d2a42dfc76e82a22f67834b200b7c121e461e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.52.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebf760b596012173b9f8b7a06ccee3082c45b848128f337b447bf207783431a7
MD5 b24f00bb48b9eeecb33fc5967602697c
BLAKE2b-256 6ca1c770b145dfdc65c52145d4d4fb80d92ab519c6e13c762b54af64fcc10072

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.52.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 5.6 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.52.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 799c710f27eb6af4306309a77df5e63a43003be4c760455344c4143fe622d924
MD5 f3021e31416d9e326df947355104e0e1
BLAKE2b-256 46fb098781e59d1f2e9abde1101d77616fcc3594c0ff03b700bb0cab564cff52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.52.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 49429131d5616207b38de941ee1ab94bf272b675a37066c7a36c8ddc63468303
MD5 c4ca7b4f20ae37addfe5580c80105553
BLAKE2b-256 e24928b84f638366db4bc1e3f0c53f6ff6f26f6c85c1b99324438ee4f246ad3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.52.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.52.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.52.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f08cd5ca7c27ef06d0828bca6cc589ac074dbcfb0115472077aebd1ca54d8252
MD5 ce4082926ab97f23fcc0efe3180ccfa0
BLAKE2b-256 0c908e0daaed5ee0e1ebf502675f0d4ff009b856f8144649bb85fef1db96a693

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.52.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11914bc212a3207aa834a7af5a344d154f02b873ca19d25a74b3c92ef950c45e
MD5 dbae23eb4a83af51ce144522fc74ca88
BLAKE2b-256 22e56d67129ff7c70b17a43d06ff6e8bb7e04befa3462e9641f6510b713e7ce8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlspec-0.52.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 5.6 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.52.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 26dbcd77d39b66a00100b3125dd84206692f9258ad1f4d19f98e4d3ac19ca0a2
MD5 2ff4d5f4d9daaf0e2dad22deee37084d
BLAKE2b-256 2e013d8b977a25cb0c0c0fb7e77718b3a04f42c3be214e76a644fc79b498ab99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.52.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 be87bd00bf4aafc771e4635187a7686e6b23e9c499cab91edb14e0b9ea5b1f09
MD5 cc4b7db91fa223f0375a76bc1d42eb4d
BLAKE2b-256 65b2c3fe83c2bf8490676594a80886e2251331106d2fc0c421e13f56adafba64

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlspec-0.52.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.52.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.52.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 9a642a411b5c4fb82bd3421cc4f946c96057cdf7f95f325014cf317aace8bd96
MD5 3af26969080753595983b98b84992c59
BLAKE2b-256 89e836085c103dd385bfdcd4d2053cc14c1ce9e824031f32d04345a65f6710fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlspec-0.52.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6027c93a0dd211e62f3602aef8822048208f6c0d395ec0991c83688b7fda5aeb
MD5 e71cd95ff14adaf7c831f35004c4ba31
BLAKE2b-256 6909fe259f58ea16c3b4b3a4e959304dd080f37966235d37560ca0785fb16592

See more details on using hashes here.

Provenance

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