Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

PyPI PyPI - Python Version PyPI - Downloads

The Python SQL Toolkit and Object Relational Mapper

Introduction

SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL. SQLAlchemy provides a full suite of well known enterprise-level persistence patterns, designed for efficient and high-performing database access, adapted into a simple and Pythonic domain language.

Major SQLAlchemy features include:

  • An industrial strength ORM, built from the core on the identity map, unit of work, and data mapper patterns. These patterns allow transparent persistence of objects using a declarative configuration system. Domain models can be constructed and manipulated naturally, and changes are synchronized with the current transaction automatically.

  • A relationally-oriented query system, exposing the full range of SQL’s capabilities explicitly, including joins, subqueries, correlation, and most everything else, in terms of the object model. Writing queries with the ORM uses the same techniques of relational composition you use when writing SQL. While you can drop into literal SQL at any time, it’s virtually never needed.

  • A comprehensive and flexible system of eager loading for related collections and objects. Collections are cached within a session, and can be loaded on individual access, all at once using joins, or by query per collection across the full result set.

  • A Core SQL construction system and DBAPI interaction layer. The SQLAlchemy Core is separate from the ORM and is a full database abstraction layer in its own right, and includes an extensible Python-based SQL expression language, schema metadata, connection pooling, type coercion, and custom types.

  • All primary and foreign key constraints are assumed to be composite and natural. Surrogate integer primary keys are of course still the norm, but SQLAlchemy never assumes or hardcodes to this model.

  • Database introspection and generation. Database schemas can be “reflected” in one step into Python structures representing database metadata; those same structures can then generate CREATE statements right back out - all within the Core, independent of the ORM.

SQLAlchemy’s philosophy:

  • SQL databases behave less and less like object collections the more size and performance start to matter; object collections behave less and less like tables and rows the more abstraction starts to matter. SQLAlchemy aims to accommodate both of these principles.

  • An ORM doesn’t need to hide the “R”. A relational database provides rich, set-based functionality that should be fully exposed. SQLAlchemy’s ORM provides an open-ended set of patterns that allow a developer to construct a custom mediation layer between a domain model and a relational schema, turning the so-called “object relational impedance” issue into a distant memory.

  • The developer, in all cases, makes all decisions regarding the design, structure, and naming conventions of both the object model as well as the relational schema. SQLAlchemy only provides the means to automate the execution of these decisions.

  • With SQLAlchemy, there’s no such thing as “the ORM generated a bad query” - you retain full control over the structure of queries, including how joins are organized, how subqueries and correlation is used, what columns are requested. Everything SQLAlchemy does is ultimately the result of a developer-initiated decision.

  • Don’t use an ORM if the problem doesn’t need one. SQLAlchemy consists of a Core and separate ORM component. The Core offers a full SQL expression language that allows Pythonic construction of SQL constructs that render directly to SQL strings for a target database, returning result sets that are essentially enhanced DBAPI cursors.

  • Transactions should be the norm. With SQLAlchemy’s ORM, nothing goes to permanent storage until commit() is called. SQLAlchemy encourages applications to create a consistent means of delineating the start and end of a series of operations.

  • Never render a literal value in a SQL statement. Bound parameters are used to the greatest degree possible, allowing query optimizers to cache query plans effectively and making SQL injection attacks a non-issue.

Documentation

Latest documentation is at:

https://www.sqlalchemy.org/docs/

Installation / Requirements

Full documentation for installation is at Installation.

Getting Help / Development / Bug reporting

Please refer to the SQLAlchemy Community Guide.

Code of Conduct

Above all, SQLAlchemy places great emphasis on polite, thoughtful, and constructive communication between users and developers. Please see our current Code of Conduct at Code of Conduct.

License

SQLAlchemy is distributed under the MIT license.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sqlalchemy-2.1.0rc2.tar.gz (10.5 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

sqlalchemy-2.1.0rc2-py3-none-any.whl (2.0 MB view details)

Uploaded Python 3

sqlalchemy-2.1.0rc2-cp315-cp315t-win_arm64.whl (2.4 MB view details)

Uploaded CPython 3.15tWindows ARM64

sqlalchemy-2.1.0rc2-cp315-cp315t-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.15tWindows x86-64

sqlalchemy-2.1.0rc2-cp315-cp315t-win32.whl (2.4 MB view details)

Uploaded CPython 3.15tWindows x86

sqlalchemy-2.1.0rc2-cp315-cp315t-musllinux_1_2_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

sqlalchemy-2.1.0rc2-cp315-cp315t-musllinux_1_2_riscv64.whl (4.5 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

sqlalchemy-2.1.0rc2-cp315-cp315t-musllinux_1_2_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0rc2-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (4.5 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

sqlalchemy-2.1.0rc2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sqlalchemy-2.1.0rc2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sqlalchemy-2.1.0rc2-cp315-cp315t-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

sqlalchemy-2.1.0rc2-cp315-cp315-win_arm64.whl (2.4 MB view details)

Uploaded CPython 3.15Windows ARM64

sqlalchemy-2.1.0rc2-cp315-cp315-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.15Windows x86-64

sqlalchemy-2.1.0rc2-cp315-cp315-win32.whl (2.4 MB view details)

Uploaded CPython 3.15Windows x86

sqlalchemy-2.1.0rc2-cp315-cp315-musllinux_1_2_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

sqlalchemy-2.1.0rc2-cp315-cp315-musllinux_1_2_riscv64.whl (4.3 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

sqlalchemy-2.1.0rc2-cp315-cp315-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0rc2-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (4.3 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

sqlalchemy-2.1.0rc2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sqlalchemy-2.1.0rc2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.6 MB view details)

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

sqlalchemy-2.1.0rc2-cp315-cp315-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

sqlalchemy-2.1.0rc2-cp314-cp314t-win_arm64.whl (2.4 MB view details)

Uploaded CPython 3.14tWindows ARM64

sqlalchemy-2.1.0rc2-cp314-cp314t-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.14tWindows x86-64

sqlalchemy-2.1.0rc2-cp314-cp314t-win32.whl (2.4 MB view details)

Uploaded CPython 3.14tWindows x86

sqlalchemy-2.1.0rc2-cp314-cp314t-musllinux_1_2_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

sqlalchemy-2.1.0rc2-cp314-cp314t-musllinux_1_2_riscv64.whl (4.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

sqlalchemy-2.1.0rc2-cp314-cp314t-musllinux_1_2_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0rc2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (4.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

sqlalchemy-2.1.0rc2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sqlalchemy-2.1.0rc2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.9 MB view details)

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

sqlalchemy-2.1.0rc2-cp314-cp314t-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

sqlalchemy-2.1.0rc2-cp314-cp314-win_arm64.whl (2.4 MB view details)

Uploaded CPython 3.14Windows ARM64

sqlalchemy-2.1.0rc2-cp314-cp314-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.14Windows x86-64

sqlalchemy-2.1.0rc2-cp314-cp314-win32.whl (2.4 MB view details)

Uploaded CPython 3.14Windows x86

sqlalchemy-2.1.0rc2-cp314-cp314-musllinux_1_2_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

sqlalchemy-2.1.0rc2-cp314-cp314-musllinux_1_2_riscv64.whl (4.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

sqlalchemy-2.1.0rc2-cp314-cp314-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0rc2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (4.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

sqlalchemy-2.1.0rc2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.6 MB view details)

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

sqlalchemy-2.1.0rc2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.6 MB view details)

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

sqlalchemy-2.1.0rc2-cp314-cp314-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sqlalchemy-2.1.0rc2-cp313-cp313-win_arm64.whl (2.4 MB view details)

Uploaded CPython 3.13Windows ARM64

sqlalchemy-2.1.0rc2-cp313-cp313-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.13Windows x86-64

sqlalchemy-2.1.0rc2-cp313-cp313-win32.whl (2.4 MB view details)

Uploaded CPython 3.13Windows x86

sqlalchemy-2.1.0rc2-cp313-cp313-musllinux_1_2_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

sqlalchemy-2.1.0rc2-cp313-cp313-musllinux_1_2_riscv64.whl (4.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

sqlalchemy-2.1.0rc2-cp313-cp313-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0rc2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (4.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

sqlalchemy-2.1.0rc2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.6 MB view details)

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

sqlalchemy-2.1.0rc2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.6 MB view details)

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

sqlalchemy-2.1.0rc2-cp313-cp313-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sqlalchemy-2.1.0rc2-cp312-cp312-win_arm64.whl (2.4 MB view details)

Uploaded CPython 3.12Windows ARM64

sqlalchemy-2.1.0rc2-cp312-cp312-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.12Windows x86-64

sqlalchemy-2.1.0rc2-cp312-cp312-win32.whl (2.4 MB view details)

Uploaded CPython 3.12Windows x86

sqlalchemy-2.1.0rc2-cp312-cp312-musllinux_1_2_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sqlalchemy-2.1.0rc2-cp312-cp312-musllinux_1_2_riscv64.whl (4.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

sqlalchemy-2.1.0rc2-cp312-cp312-musllinux_1_2_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0rc2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (4.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

sqlalchemy-2.1.0rc2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.7 MB view details)

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

sqlalchemy-2.1.0rc2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.6 MB view details)

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

sqlalchemy-2.1.0rc2-cp312-cp312-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sqlalchemy-2.1.0rc2-cp311-cp311-win_arm64.whl (2.4 MB view details)

Uploaded CPython 3.11Windows ARM64

sqlalchemy-2.1.0rc2-cp311-cp311-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.11Windows x86-64

sqlalchemy-2.1.0rc2-cp311-cp311-win32.whl (2.4 MB view details)

Uploaded CPython 3.11Windows x86

sqlalchemy-2.1.0rc2-cp311-cp311-musllinux_1_2_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sqlalchemy-2.1.0rc2-cp311-cp311-musllinux_1_2_riscv64.whl (4.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

sqlalchemy-2.1.0rc2-cp311-cp311-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0rc2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (4.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

sqlalchemy-2.1.0rc2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.6 MB view details)

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

sqlalchemy-2.1.0rc2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.6 MB view details)

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

sqlalchemy-2.1.0rc2-cp311-cp311-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

Details for the file sqlalchemy-2.1.0rc2.tar.gz.

File metadata

  • Download URL: sqlalchemy-2.1.0rc2.tar.gz
  • Upload date:
  • Size: 10.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.14.0

File hashes

Hashes for sqlalchemy-2.1.0rc2.tar.gz
Algorithm Hash digest
SHA256 3a28c8d9ee917d80a84a61dcb4d6ba27d2634bf1b43dc5351524cca999cbb8c4
MD5 b50a04a0a632a24bf4bf2ed9f566b207
BLAKE2b-256 21f4e1f158a455a140fda0cb84944713d7b5c65f472096f6398d64144a236972

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0rc2-py3-none-any.whl.

File metadata

  • Download URL: sqlalchemy-2.1.0rc2-py3-none-any.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.14.7

File hashes

Hashes for sqlalchemy-2.1.0rc2-py3-none-any.whl
Algorithm Hash digest
SHA256 7d8de8ce7c502cbbef315b7d919fec1320b14dd0d87baa081613646a473c5f51
MD5 f9665557d1f5adc467106522f3f4ea66
BLAKE2b-256 ea46d84e701fad970bf53df829e7d304f5378abbcb30ba6be4ae9b047c5934a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-py3-none-any.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp315-cp315t-win_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 bef5a38f968ab24283ca567899de01b181b5d0fe3614a324a3d2f7a4fa5f04cb
MD5 8d91b9726461c995e841a5ef24389354
BLAKE2b-256 b659966b174eb10812abd4e48742c57f76e79f7e033b103f011f30dcb7eeba74

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0rc2-cp315-cp315t-win_amd64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 fc59513ba0d49015d90876bf67c9b96e2385e6124c891140e8db88184b5d747e
MD5 4a68f79a8677eb72d2e5f6d377ece761
BLAKE2b-256 78838e8615c8256aa9bdc2bd13db4b0df5f5a61a02ec1d5b891cd5b68a1ee69b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp315-cp315t-win_amd64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp315-cp315t-win32.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 8a2167998c27184428a8ed6e306d13818c21ce5891831017e3107e3e8dfd24a4
MD5 cce8ce971ae4a99b17e5a3aa6cb4c364
BLAKE2b-256 a5eb7c5ed74d413ef2a052ceee46a4f146104dcf0cc10efe9e1162b0e902c78c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp315-cp315t-win32.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f652b735de4588cc8a6e38ded45e3d0d9818eeca8815985c44631c12a69aade
MD5 43da5b00c7915508dbeed0cd1ae01daa
BLAKE2b-256 cf4d655ced7d24168e04fdfdb335bf6673abfa76e3e154059ca63e528fa5b5d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp315-cp315t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c4afb86d2625d3ab60d8aa2370081b58b189e8f9c973fa84e0c51e479438c523
MD5 173d1de8c1bd3cbe74dfee83767a3136
BLAKE2b-256 a0ddb3a85a7d7232ad416412c65c6e174f58fb3c44885cd1c206b7da44be87f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp315-cp315t-musllinux_1_2_riscv64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c606ff49e89e4a55fb6e717edd5987660ba1f11d8ea01ce5a78d62671ddbf70
MD5 286240fcbd34184adf9b0218095e584a
BLAKE2b-256 30eba8da77c7cd45e63d0f182fa6c3e28088ac54a6f5041ab2584de63260ba26

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp315-cp315t-musllinux_1_2_aarch64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ade54cd35c1bf6327d583f16487009db18ab96ec325620a78409bd4240fdc2df
MD5 4052e8bc605a24759d8457da5bf28284
BLAKE2b-256 04618476056062f231712952d0ee5c160d84a6556cdb0ab640e315d09ba59508

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 927e993238790f5e83fcaf32115c8b7685a2c019f45ac14e75577b0053789ff5
MD5 ed7e70b4ec11574a7fefe1546b7aa9e6
BLAKE2b-256 3e0fcfbbed86e295d6aecbfbf84a72b4f21ee012a71c31e362c062dece98a8cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c0faeb1a9b92507bba5dce6f23f6c53712121d35a84d532ad6cb2760863c91c
MD5 623cd312fd2155adcb0e63abe93f2bfe
BLAKE2b-256 72d7f4a29e2e88f10c62a5434b1753a20604e795ccdf65a949c34c725c4b63df

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84d2f4ea878b06692d784a0ea83e4eec7193471676d12984227a972c8ef5a5e9
MD5 9586afe89dd76d844c0d26b701ec2f58
BLAKE2b-256 3891659dd0375c1c5a65c22f500e9c6de7e391754024dc5950cc0a468fabfd49

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp315-cp315-win_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 395f92fa93bc5cf434f9cd78f2a73a279f3804b9eab5d0982a14461137bc9f99
MD5 0682b493c81252515091a239e9f80f4f
BLAKE2b-256 c8185498de1550621652a150a86136df20deb346a7de02c8a03b48db8bdfd66e

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0rc2-cp315-cp315-win_amd64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 6af0a398421c25ac90d7dabf89f6e80b9f288c9735b5d117b88a78a889201205
MD5 77c889ffa9dcbfdb3130feb2acba3d22
BLAKE2b-256 4a1006cc2a681539204e3a0a24da480a6c8b20e553e4d119c11597782327ed83

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp315-cp315-win_amd64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp315-cp315-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.1.0rc2-cp315-cp315-win32.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.14.7

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 9985364fe10218d712253da5c92d90c067068e5cd09f9eb4a4c6c1f539924998
MD5 17614c6e741eee22b556465e9e911d8b
BLAKE2b-256 3b1549eed5f5ff595b18e4b03016985b59cb6cd20e6b8bed792eb02603304558

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp315-cp315-win32.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25be85603ccf2fb75f848a01f814033256e850f8e58c38a0ceab8d189f238f42
MD5 497972e8adc52dddb6ffd2ff92ab4f16
BLAKE2b-256 6973d2765c6a9286e28d7367dea295093821b2a06f6e8ba2b4b2464c4bcd0973

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp315-cp315-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9c5505fea6ebe12047eb3a403ce951076101e4e7cbb6a2724252b0782d370112
MD5 dfe6b1b7ad40e0a5c4ed4dd35da7e104
BLAKE2b-256 880aa087a71f0e9cd44a9edc283f3d881dddf1afa830d1021ad86cce7d387a65

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp315-cp315-musllinux_1_2_riscv64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a712efc2f93be35789baa95ae4e5cbd2cdb27e77246515402c448b777d6eb5b6
MD5 e95af11f33d2ace0a9680f959823183d
BLAKE2b-256 15cfcbbd93bc8aed43f1425d743dbf886f7518e21a34e39e0c839dba1f1ec5fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0dd8e862444ea5e098fbc3cf2e4e30a9566c0121ea2bd71e0a158a862cd708a5
MD5 491315fe4fdeb44e15f7473c56088b75
BLAKE2b-256 a270b2a2373c5ecdd98387c326aceec1eadfe98d3df24069397db03a5e9e334d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5351ed8c0d31db1e1c6d050b157f61e0c00be01471dd7a961c1a4f554f767de3
MD5 c33c6ce995120137b7c4299579ee88a0
BLAKE2b-256 788bbd6da96cb82fb4d41a7cbfbef3fed1320d9802c4fdfefc438375f4bdc6ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4439cb8bc5504f48062286e11e5cfc49e0d88d9ee66143f5fc8bcbb140adf384
MD5 07ff837c5bb96e322d269284c232b4f8
BLAKE2b-256 368408edb43f20c83cd505eb517732444199395337e9073ca5ded02559fdf08f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74101766bfa443ad05587cf5f511824e1d660e84d30de7e99d07ff974e25a3c1
MD5 7e9f6f856b6f7c8753e18be206e35719
BLAKE2b-256 1b4aebf659483596949aaddd5950730a96e50d904d4c76fca45253acbcd5b933

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 c5df1d2ea35e1563ae6528960d04df827ebe2dd41f74967a3b8354be4d65fd5b
MD5 521e01258fdca06a68f3c2e4b52bde71
BLAKE2b-256 7ed309e3b65098eaf098aa8d3b3f3ba5c467c0e4af93f4334d2ba6d4771be148

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0rc2-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f094a7e3a848b8b8ecca68d246c5f7c065dbb10cf588006f201aaa43e081ece6
MD5 fe848d512ab79ba00824a96257291587
BLAKE2b-256 4f5cecb149ebc5ef0d157e187336b7ecb90bde80f1398a9ada4f923efe09ec12

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp314-cp314t-win_amd64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 ef008c448cf84bb5d092f72b42b2755086ae912c85b860ebd281db9b744c64fd
MD5 e2a739ec0899a23898f1714cc104cd53
BLAKE2b-256 4c00bd8321455533873fbfbb84492ef22cfd17d6c4001f418f4d351c2ffd2730

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp314-cp314t-win32.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55796136525ebc636bb70b0d5931a66f7a99939bfffd66202a423dbeacd630be
MD5 92deda605fa47bfb340062964824f686
BLAKE2b-256 53fb3fe8637f46ebbf0e6e312872820a7bbb78628b96e04a5201bd216970c3db

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 add89ee5442602e5b0658bb38d03f760cd935b1d674ef63d0fc85334f8372ca7
MD5 e8d122f851cb0b1525f442bb37b1acfb
BLAKE2b-256 5cf72cf33fe596207066af1b0ce2baa718da0c71991ecc6204323be639c63425

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp314-cp314t-musllinux_1_2_riscv64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ddfe0e27470d2a7645caec44c780dcb42f81d0b3fb67cf636ab57da6465e57dc
MD5 09430a49526818f5495424a52524f09b
BLAKE2b-256 86a807db1dc681708ee55e304f7d5a22a13e57a3e973bb8746b426ba587d3552

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 39f9f9ce63a050e37009acecb57ee41731651482b0e93635fcba285463a42b15
MD5 a96fa322bfcbde8e4bacd48b478037b9
BLAKE2b-256 9a8daac4ea28aa9768726429dfbd0e7d31069245377370ea452add76b4b39ee6

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 25de30816771f297cb890c0567c2f092687f244177555e68eb4e461a7ca5b871
MD5 37e15b8c7512a50f339c1b3f86c2cce6
BLAKE2b-256 5ca66adfceca59aae2a0b7147425796bdf3016932de46c601043cfe8770e415f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bc65aaa9de5d78cbd39d146eeede26536a7c55ffbd4cae73d36a815248aef48c
MD5 59b190a26b4cbf08bfb683215ddcd07e
BLAKE2b-256 86200f48bac9aa2d550ff6d8c9f5a001d47626fc4c68b0ab919b554f2d4b3612

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4726b1f6ddc5ca1b190f8ee76c863cc883207c84d268b8685ba93158d7d300c7
MD5 84b53007e266d0fad155b82bc70a4b46
BLAKE2b-256 53eb6c84feb95fbbccb0a4646552261d4f4c53fb36de4fb874ad227f0f55c862

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d713b318278945af22669645757d4ac3bc59dba80c6b98e11894918391d0286e
MD5 6d211ab7f7af1f47df5c7694558c5d30
BLAKE2b-256 f6a62009832e2f4ef1da9b1d719426b85b5153de3771bf7a2aa6665bd860fa66

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0rc2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e6e1eaeacf3d5ae585fe2b17f1ca487b0a9e9ecb85ab7dad55773daaefc54d1f
MD5 745ac9d3c576044fbbc8d43d30ea0f1a
BLAKE2b-256 22acbabdbd76e6557cc9d65a108f5d69b9f586f5819ec657866825d935c58610

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp314-cp314-win_amd64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp314-cp314-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.1.0rc2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.14.7

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 db1ccf0bd35706a764b1204b1b4395a4e0e16d955fb0cfe54c8a3d20e328a2c2
MD5 8c497a46ef2b77c2bd6898e189abebc7
BLAKE2b-256 7cb006feec7b7b9c35169cf0cbb988488df05d698e12b2474349f953b514a4e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp314-cp314-win32.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24b8f5fb2dd14d55f34beff2825bac6ce079f3d3297bc2e5cb573ca02ba04a21
MD5 4a43d1c9187b82a2efec82c59be85620
BLAKE2b-256 b3d03b54246b45b78cca922d26c89eb01d9422783e45098b82fa7b114dd31bc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8ac9b27a765466951ed13570126aa98b307c6247035c25e630cd71bf3cce975f
MD5 a8680c2fba12e5718e8c88b1497f9e08
BLAKE2b-256 4beb6dc8c0e4844105cc5e94fc0cc2797627a1d97269a21a6cdba5e1989880e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp314-cp314-musllinux_1_2_riscv64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e370f43b8044b7a0e9b5b758d29d144e582eef6b10a1cd268f3c164975f9b6d5
MD5 b426c7b326dc7cbf05fd0fb58a39f369
BLAKE2b-256 4f3edb4902a68cbc24d6a848c9d6038d3a234891a903f879e18ae40425b03c74

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 38fe9c92107a1e428248b6ebc56c96dd0146b09b79c5fcff97950e6fcd28a257
MD5 d53efd4dd6f0b9ebeac4cd68b1e53481
BLAKE2b-256 ff4add01302209ad635adb4c4b9063214e4055e1f147a7b1f3be8325711a5968

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 01b7831366d1ad69287255a7000b714bec4f6196f8bbffdb9d774cd9a3e66bd2
MD5 12ad92a46458c07737a66eb7d0b745ff
BLAKE2b-256 8d292d64a2101d11f697631f5c1f4ddb7e68d38613715bc1df17082e6dc42bf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a985cef53ce4fe1b14476c38d4b744ae22e7614000e67cef2af577c58ff7bc3c
MD5 5dffabb23ed181af6812291456eb3ea0
BLAKE2b-256 76e62c1a104f6df7d62577f626c2f9511aa9cb02d3c0a1b7a691cc1ebe9e0ecd

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c1418ca8f538ed0d6c63dab1398e08f755d25d43d600108b451623b7b2613a7
MD5 d5b1b9fd4a0ac2644bdd6ddb2636a7b4
BLAKE2b-256 8e51369af2d400b66d7ed4191c543d3acbebb0d76d6bbaea8e20ae38fee81395

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 540095d2c2ece33c99d492f593e6d378eb4bdf09bcd472d9e061995833a35109
MD5 50fbb9f7124bced828ee3bbfa060a3b9
BLAKE2b-256 79f9d99b089cf3f0aa56961407e5cf3a31f9333ee3b3a5a79e0f459d1236592b

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0rc2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d3d20e08f29400537ce8675bcce30b43abdde446b371c80d60c2297d91a52b8a
MD5 4c0a9066bd4920102deb3d73fe757542
BLAKE2b-256 1220be48ed9b3ba1d33d1cbf30a08369971133e1578369b0fc69716933a27f33

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp313-cp313-win_amd64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp313-cp313-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.1.0rc2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.14.7

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c70ff5938cf1cdaa90387f6ee76ffdea4b0b72e3ffb70dac5c52ab8d3154f85d
MD5 3bbd0787b25219ab1ea636c5cc3d6495
BLAKE2b-256 d933049d96464dc80d72d4cba1401b42661ffffaeb7a38cdf8acf33fe900de34

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp313-cp313-win32.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 81fd156cc06a691a5650b60dfeac9135914ba40105f38898609395fefc751bc0
MD5 08677a81093adb1355b20a224e004eb2
BLAKE2b-256 b6f6704d14a1d37bed2a21cab71c17c6a2caea6ffe1778ab5838db25da2ee9b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7a230b8e49b9919a24aea99b744aa84ad4633704d8ce22f448b75e94d5fff7b0
MD5 762c2edf68b8189b7d3ad7d62382cd29
BLAKE2b-256 7647ab2a48e95f002efe9fb40e5c27db402c0ecfaa7ff4b473d009b46a3896d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp313-cp313-musllinux_1_2_riscv64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a988f381add8e2d38a8d17a22b585c996fb05a6e8f3a30f99039b8d44217ef68
MD5 45cdc5eef81c36f2e26bf2427f838790
BLAKE2b-256 da106fa1790c9849caf217bd1058610f76a19063fb8e5d22e1f072ddf65fdec3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3e71bdb4dd21f325b0ce37aa691a6252b38fe3407cf3ed550a7d9cb770664830
MD5 c091fad94807c86b1e4b8854370771aa
BLAKE2b-256 f5acf9d13839803942ad092570ddffa22351bb00d6ef32bfbed59fe0ef35c5c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7264d8fb41c916e83887a813ae0e56f806dabdb75525ed96773b75afe38fb8e4
MD5 a080d8b93d342df7fe218c9356ea9517
BLAKE2b-256 0185290280a0973bf1a292549d828b81126f0a0c74c85503000c136eec1b0323

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c2793b2309b2012f69ed7008e27b5d06e2a516ab8eed8615a99a191056237054
MD5 c633368bc1b0e7ee53a0bea041661361
BLAKE2b-256 cb3a10557ce9859bc4bf54dad9e9db00268eb2d9a431fc11512c930c5dc8c222

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09ecb791188949b9342903ab344a3c6200339723db4588a18adec2d20c1bafe0
MD5 fff08ace7c693ff98c4616aa3af1239a
BLAKE2b-256 5a4576f5ffacfc83a3f159ed182e0eec96026a618c6c4f1b3fe2e3c6b5f553c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 072d668e4e56374efd3108969352308ca63c89929c2ea5885d0e635aa77a5600
MD5 3e2833425804b5c28091148b7d0b1c74
BLAKE2b-256 bd256dbc12bf00158f9b3083c09ed609e8983113f5ee20408ce95bb6630d8239

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0rc2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 69fdaf41bbf7c6a0294b40b944b873515023f16a26c9e9f39ebea4ea489bd6b5
MD5 16a046af3c1fa1889c964eeb4e6b9a1c
BLAKE2b-256 ace0cb62c9f66c43fee178de54e8060176745113a4be09f7cf0776540db53cc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp312-cp312-win_amd64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp312-cp312-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.1.0rc2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.14.7

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d655c1258da699a90684c198ca78f703d65f94b140d8b6135d88d980772f2a67
MD5 f9e0655d6222a582a50f61dfcc66564f
BLAKE2b-256 b4bd975c504e14955d1a930bcdec3c30df51b4efafe095e76f51249b2dd1d82c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp312-cp312-win32.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 422d34a04d9b20773b0dd0a484935d0989fb8b0cfe2d167a1a20284ee533630f
MD5 41969ffff0e2d367f2d2733aa92ab136
BLAKE2b-256 c78378159d569cd899b134f2bd3abea457cb4f8d1ec2c473133876ad282d9853

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 215dd68d3f58bf6efa04679e8eae39f4875d394365d4818ccec6a404158b18cf
MD5 5c32fbeff3eedb7c3e36c5e2c578e21a
BLAKE2b-256 27722f8b3f138c151499fca452443f547506aaa74b0f247d0a65127381e772e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp312-cp312-musllinux_1_2_riscv64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56c70acd5f84b2d9523e623d1bf4783c0c31900f3176867bd61f8e4dada0eea3
MD5 0a0c41968a435bfde8cadb2b67a51c07
BLAKE2b-256 28d5461324e30bce95d37862efb42259a782b3b1aa39103086a590ce8c8aed7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 689d5f74f31af1509146aa08409681a2e8c48b2dafb8ef85b5f0ec6b99f2beeb
MD5 ef8c38975e5a3aebdf3a65a99db97586
BLAKE2b-256 0efbda812f3d73628d098d2a2c977b6d82047ecc2109b1cb341aabe643737a7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 654a6a8adf02936ffdf7a929e274ff13083f574cca953318e8594cc0a138efc4
MD5 32164d0b87033c3eaade2f702c6cce55
BLAKE2b-256 93fbc8f975ac84cc1a44638aa7981bfad57f4240372ef20217e793c53e82cb80

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9046e63a2c035707d274e7680f49d256057cc9725092642d53c49e4100d24d22
MD5 f7b5caf3fcd6c57f9ea53ef714f831e7
BLAKE2b-256 e0d5ee92d977e3bafcdbee8c66de20918d42c594a70cf1fa940ce1e6e5952a7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa2d2426cc2e36d85c4cf1084d19edaa54d75e0ec7b09cfd88a197a03999fd29
MD5 d2fba741ebac199fbac270fd2942c67e
BLAKE2b-256 b59eb35c6e990b228587c686e8d0f1f7b95fb54434bd54a9024f53086ac7f1d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 0dad12534243c6c6aa43162ef651d458f8fc07ab0a270fc3a0082bf921035ba8
MD5 fba998610a432709e696669e0a120320
BLAKE2b-256 c10d8aae0cfb5273e87d01e7eba732a58384462f81179cbea10bca479639af47

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0rc2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b1fe5c65bf851b2d9fbbeda0e5c13acaf24f3fd52dfbb819a04f54c1be13a9f6
MD5 4b8a579608aa22897bf61501c884d311
BLAKE2b-256 cc9e14a1085298d37103b97e4616deada4cb971e67f99c08aafe34a669842166

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp311-cp311-win_amd64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp311-cp311-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.1.0rc2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.14.7

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b1fd26d4f51689f1722bc4549a2ea269effb7f87d3cbdeb556ba5f74d4bc47b4
MD5 58cf8cbd6892e3b16eb5dbd90c4bd175
BLAKE2b-256 fe0e3da3b30c0c25efac2f8f374f5bc10f879c1676945c48115038107471067a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp311-cp311-win32.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5470a86044de23c366d2b6627221bd718a4e5703cef7652cb6c583260dd9df5
MD5 75f89bcfe2ac0113b4d089a4feb26376
BLAKE2b-256 9543a5e1f8a884f6b795fef3b7efbf9e9dabb7b2c6fad246e41ce4728118360c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ee9e36a17cf130d1e17e5096984fa65ff095b6e64e2a96b6f31ce0b28797de97
MD5 92aaee2abf1d1d8aceab9098a52f2b27
BLAKE2b-256 10e19deba400ccbb86327b9b5e8f4eb968a7f1b67c2fa9e603d9f3218f921b4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp311-cp311-musllinux_1_2_riscv64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c827bd767269ef1c267313ea9ca3cd2ba53753584cc9fd323f5bbc58e31c82ff
MD5 be7d227d03ba54d03703e4b9a3ec9f81
BLAKE2b-256 39982613217482d8493c9cde43f51d3ac71116839e71b8a8e937a305a1442a3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 41ba5480ead63b421cef2467dbb4c558f10cddbe51949a0bdf508f305864f7ac
MD5 fa9f5c443c378e33539003fbae226513
BLAKE2b-256 ffbc269f59bf7d394a34c0f04496114fda2773a4721ddebd31dc0da4ea52d9ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2eb275ada98767d6df9ec97fbeeea0f2406cff5cdb10d7eff689b5d18c2a989d
MD5 efd2983020628071b410195ac08e2475
BLAKE2b-256 2bd2496bd785d5a430ffe2fed646aa69005f778ff42157b526801060b0a55b81

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 80a2b13efc42f47d965a8120c90912c874b4bcc6e32052c00d15fed94fc816e8
MD5 0dde835dc96be4eb55d0112ac6a9a656
BLAKE2b-256 6fa50e077cb488ec903336d07c698a2959a73d9d9b6865add848a67e7c61b083

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlalchemy-2.1.0rc2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2db2c394117f5750f7cdc3062396dfa557d2c918681a60cbb93e115ce985a77
MD5 6b372343492e33e1389e473803820aeb
BLAKE2b-256 12279cd84d2b4b4414d958ec3a397489c950efc5c5bf5db5a042a337f843fed5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: create-wheels.yaml on sqlalchemy/sqlalchemy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

2.1.0rc2 This release

72 files

2.0.52

52 files

2.0.51

58 files

2.0.50

58 files

2.0.49

63 files

2.0.48

63 files

2.0.47

63 files

2.0.46

59 files

2.0.45

52 files

2.0.44

57 files

2.0.43

57 files

2.0.42

57 files

2.0.41

57 files

2.0.40

57 files

2.0.39

57 files

2.0.38

57 files

2.0.37

57 files

2.0.36

57 files

2.0.35

49 files

2.0.34

49 files

2.0.33

49 files

2.0.32

49 files

2.0.31

49 files

2.0.30

49 files

2.0.29

49 files

2.0.28

49 files

2.0.27

49 files

2.0.26

49 files

2.0.25

49 files

2.0.24

49 files

2.0.23

49 files

2.0.22

49 files

2.0.21

49 files

2.0.20

41 files

2.0.19

41 files

2.0.18

41 files

2.0.17

41 files

2.0.16

41 files

2.0.15

41 files

2.0.14

41 files

2.0.13

41 files

2.0.12

41 files

2.0.11

41 files

2.0.10

41 files

2.0.9

41 files

2.0.8

41 files

2.0.7

41 files

2.0.6

41 files

2.0.5.post1

41 files

2.0.5

2 files

2.0.4

41 files

2.0.3

41 files

2.0.2

41 files

2.0.1

41 files

2.0.0

41 files

1.4.54

44 files

1.4.53

44 files

1.4.52

46 files

1.4.51

46 files

1.4.50

46 files

1.4.49

48 files

1.4.48

41 files

1.4.47

41 files

1.4.46

41 files

1.4.45

41 files

1.4.44

41 files

1.4.43

41 files

1.4.42

41 files

1.4.41

41 files

1.4.40

36 files

1.4.39

36 files

1.4.38

35 files

1.4.37

36 files

1.4.36

36 files

1.4.35

36 files

1.4.34

36 files

1.4.33

36 files

1.4.32

35 files

1.4.31

36 files

1.4.30

36 files

1.4.29

36 files

1.4.28

35 files

1.4.27

36 files

1.4.26

36 files

1.4.25

30 files

1.4.24

30 files

1.4.23

30 files

1.4.22

30 files

1.4.21

30 files

1.4.20

30 files

1.4.19

30 files

1.4.18

30 files

1.4.17

30 files

1.4.16

30 files

1.4.15

30 files

1.4.14

30 files

1.4.13

34 files

1.4.12

34 files

1.4.11

34 files

1.4.10

34 files

1.4.9

34 files

1.4.8

34 files

1.4.7

34 files

1.4.6

34 files

1.4.5

34 files

1.4.4

34 files

1.4.3

34 files

1.4.2

34 files

1.4.1

34 files

1.4.0

34 files

1.3.24

34 files

1.3.23

38 files

1.3.22

38 files

1.3.21

38 files

1.3.20

38 files

1.3.19

32 files

1.3.18

28 files

1.3.17

28 files

1.3.16

19 files

1.3.15

1 file

1.3.14

1 file

1.3.13

1 file

1.3.12

1 file

1.3.11

1 file

1.3.10

1 file

1.3.9

1 file

1.3.8

1 file

1.3.7

1 file

1.3.6

1 file

1.3.5

1 file

1.3.4

1 file

1.3.3

1 file

1.3.2

1 file

1.3.1

1 file

1.3.0

1 file

1.2.19

1 file

1.2.18

1 file

1.2.17

1 file

1.2.16

1 file

1.2.15

1 file

1.2.14

1 file

1.2.13

1 file

1.2.12

1 file

1.2.11

1 file

1.2.10

1 file

1.2.9

1 file

1.2.8

1 file

1.2.7

1 file

1.2.6

1 file

1.2.5

1 file

1.2.4

1 file

1.2.3

1 file

1.2.2

1 file

1.2.1

1 file

1.2.0

1 file

1.1.18

1 file

1.1.17

1 file

1.1.16

1 file

1.1.15

1 file

1.1.14

1 file

1.1.13

1 file

1.1.12

1 file

1.1.11

1 file

1.1.10

1 file

1.1.9

1 file

1.1.8

1 file

1.1.7

1 file

1.1.6

1 file

1.1.5

1 file

1.1.4

1 file

1.1.3

1 file

1.1.2

1 file

1.1.1

1 file

1.1.0

1 file

1.0.19

1 file

1.0.18

1 file

1.0.17

1 file

1.0.16

1 file

1.0.15

1 file

1.0.14

1 file

1.0.13

1 file

1.0.12

1 file

1.0.11

1 file

1.0.10

1 file

1.0.9

1 file

1.0.8

1 file

1.0.7

1 file

1.0.6

1 file

1.0.5

1 file

1.0.4

1 file

1.0.3

1 file

1.0.2

1 file

1.0.1

1 file

1.0.0

1 file

0.9.10

1 file

0.9.9

1 file

0.9.8

1 file

0.9.7

1 file

0.9.6

1 file

0.9.5

1 file

0.9.4

1 file

0.9.3

1 file

0.9.2

1 file

0.9.1

1 file

0.9.0

1 file

0.8.7

1 file

0.8.6

1 file

0.8.5

1 file

0.8.4

1 file

0.8.3

1 file

0.8.2

1 file

0.8.1

1 file

0.8.0

1 file

0.7.10

1 file

0.7.9

1 file

0.7.8

1 file

0.7.7

1 file

0.7.6

1 file

0.7.5

1 file

0.7.4

1 file

0.7.3

1 file

0.7.2

1 file

0.7.1

1 file

0.7.0

1 file

0.6.9

1 file

0.6.8

1 file

0.6.7

1 file

0.6.6

1 file

0.6.5

1 file

0.6.4

1 file

0.6.3

1 file

0.6.2

1 file

0.6.1

1 file

0.6.0

1 file

0.5.8

1 file

0.5.7

1 file

0.5.6

1 file

0.5.5

1 file

0.5.4

1 file

0.5.3

1 file

0.5.2

1 file

0.5.1

1 file

0.5.0

1 file

0.4.8

1 file

0.4.7

1 file

0.4.6

1 file

0.4.5

1 file

0.4.4

2 files

0.4.3

1 file

0.4.2

1 file

0.4.1

1 file

0.4.0

1 file

0.3.11

1 file

0.3.10

1 file

0.3.9

1 file

0.3.8

1 file

0.3.7

1 file

0.3.6

1 file

0.3.5

1 file

0.3.4

1 file

0.3.3

1 file

0.3.2

1 file

0.3.1

1 file

0.3.0

1 file

0.2.8

1 file

0.2.7

1 file

0.2.6

1 file

0.2.5

1 file

0.2.4

1 file

0.2.3

1 file

0.2.2

1 file

0.2.1

1 file

0.2.0

1 file

0.1.7

1 file

0.1.6

1 file

0.1.5

1 file

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page