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.0rc1.tar.gz (10.4 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.0rc1-py3-none-any.whl (2.0 MB view details)

Uploaded Python 3

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

Uploaded CPython 3.15tWindows ARM64

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

Uploaded CPython 3.15tWindows x86-64

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

Uploaded CPython 3.15tWindows x86

sqlalchemy-2.1.0rc1-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.0rc1-cp315-cp315t-musllinux_1_2_riscv64.whl (4.5 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0rc1-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.0rc1-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.0rc1-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.0rc1-cp315-cp315t-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

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

Uploaded CPython 3.15Windows ARM64

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

Uploaded CPython 3.15Windows x86-64

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

Uploaded CPython 3.15Windows x86

sqlalchemy-2.1.0rc1-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.0rc1-cp315-cp315-musllinux_1_2_riscv64.whl (4.3 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0rc1-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.0rc1-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.0rc1-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.0rc1-cp315-cp315-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

sqlalchemy-2.1.0rc1-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.0rc1-cp314-cp314t-musllinux_1_2_riscv64.whl (4.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

sqlalchemy-2.1.0rc1-cp314-cp314t-musllinux_1_2_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0rc1-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.0rc1-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.0rc1-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.0rc1-cp314-cp314t-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

sqlalchemy-2.1.0rc1-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.0rc1-cp314-cp314-musllinux_1_2_riscv64.whl (4.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0rc1-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.0rc1-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.0rc1-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.0rc1-cp314-cp314-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

sqlalchemy-2.1.0rc1-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.0rc1-cp313-cp313-musllinux_1_2_riscv64.whl (4.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0rc1-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.0rc1-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.0rc1-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.0rc1-cp313-cp313-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

sqlalchemy-2.1.0rc1-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.0rc1-cp312-cp312-musllinux_1_2_riscv64.whl (4.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0rc1-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.0rc1-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.0rc1-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.0rc1-cp312-cp312-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

sqlalchemy-2.1.0rc1-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.0rc1-cp311-cp311-musllinux_1_2_riscv64.whl (4.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0rc1-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.0rc1-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.0rc1-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.0rc1-cp311-cp311-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: sqlalchemy-2.1.0rc1.tar.gz
  • Upload date:
  • Size: 10.4 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.0rc1.tar.gz
Algorithm Hash digest
SHA256 a5be28230a3f7e63a8954d71d4ff281ae174b593ff95cafb52ae6b3459b2607c
MD5 eefcd0716919b285ac92bae39d2514c4
BLAKE2b-256 53780fe66ff82002bb86b3dccbeffb40a6b41062fc93a9a79eb39d017c045e6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sqlalchemy-2.1.0rc1-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.0rc1-py3-none-any.whl
Algorithm Hash digest
SHA256 f120d04c2f2afb8480dea6a62a39d404e81c4783351c98b088e49018c2145086
MD5 69524e3d6f52e4c5f3ed80b5c2eb7d13
BLAKE2b-256 60dde6c5b5136cc29a2872e2ce3a771fc30f72d088793ef7c7856a566de19a3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp315-cp315t-win_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 b971e06fecfcd5dc0dbc206d7eb8d0fa60027fbbbc9953dff1a457f63ed74d2d
MD5 259d7be0bf1777034f1563a21e63c528
BLAKE2b-256 48bdb3529cd192e0934330816b3349a9c94d9af02f8d7e0b04d1a7da609e8478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 bb34cbebcce14fc6e8d2a0a902427ce5251b1e7381e8d975c29dc0d15ee83f51
MD5 bfbb66379f3cde70bba1bf607f1a0034
BLAKE2b-256 43184799c88e15804e9888ff44033389039e3fc4d336450400442799e1e048e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp315-cp315t-win32.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 73f03cf230e62e407fc2bcc2b3f2bc17449415c16e6158af6d4ede5f48c6dbb5
MD5 71e0d82cdc8946beb97ed402fa3e2dd9
BLAKE2b-256 c6e2f1c6a1940badbde559fe1f5c702b53736504c7029d82027930e83d3fc053

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a69e2e7034c53eb5217477fc6ae820a99297e121fc8845d4b0330e0daf710710
MD5 87e59c582e4874184810fbe904ab162a
BLAKE2b-256 ef8a6454eb1d1eb64ba5cf5500ecdadfae28b5c88fe1233eea796077504da4f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp315-cp315t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c8cb74a0111891ee85f4b8a6497bb3b64c00ff3f88b53a9167ba8a36881d18b1
MD5 11be18c9d6e134c23e6986f91b11fa04
BLAKE2b-256 dd66ea9c30d55885ff7eb97d4f177c30824c80350d4c99be4e4e023b815ac8f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b7049b98fc24d778cd67d12b45f24abd4c4e8750a50428d6d25eeebc1ab0d44
MD5 9780b6ca7ade96efa3ea6630c8fa2d1a
BLAKE2b-256 e3f72a35f9790bbe9931c56aedcf538550558266ff26781bb82bd4e502543895

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 523af4f97d045e31b3083807ee3d162d899405e605c89d39d123d9955122227a
MD5 f133f7860e2fda65d0891fd729689a0e
BLAKE2b-256 553517dc34b9ff7b0616c74b9eb2d2d4d07f519801c98cdb2438dde731f3fa8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-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.0rc1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8385ecba447d95cb98646fa15b997b6f15f33b632e256693d2017a5821aab99b
MD5 afe2260ce3d6794b697dd66996f7e426
BLAKE2b-256 3b065d225ad85579f10aa86f93903b3e4119c3b5b2f6fccc4ec9dda292adb8e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 20164d076b4f11e7b4cd397262272cd7bf1f95583456defa2fd35893e933d76c
MD5 dd02440e88bd2134a9aedaa6103aeeba
BLAKE2b-256 79ce2893b026337be4e434c459ffb4a8acf59a038e3040da15a991c95a472380

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84afc0f5256968a253b7da0ce4ff06cc27fb31280a08d893c5d34771844c9165
MD5 587fc496c47efad179eab2a645124c8e
BLAKE2b-256 80d20e5640850144e5248bf01ed84665ab4714fa10a4a69ce382161aaa18f00f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp315-cp315-win_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 13e83581c578531a3bd05ab0339cb0a2198e8fc90d49201ee455a190bda1c536
MD5 8910cb1ee793bc1293584eadc7675a55
BLAKE2b-256 6b8f99a439a322b75fa191fcbfa773533d60537d3e7666b99bac1d01f03394d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 6caa1432958d86316a9c6e52a44d19f8b88713a15b0b74284eb88cc61a6598a5
MD5 f1be5ac4bbeeb927ff630b9699a4d198
BLAKE2b-256 490415c72553c987af66053fc7231b854db849c02bac3acc060258ad676c1ba3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp315-cp315-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.1.0rc1-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.0rc1-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 a371a78415d56fc80a1dc83740815688de28de64455711eb40c5bc23b9c08e87
MD5 7a0fdfd6ce319a29fe3b4b917ea13857
BLAKE2b-256 74aceb442d013cd7bdcb0b8ad9753f556e3dda32a5b8b4d0489cce35cb4de767

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a47b105bbc1a507bff9732b446fd285a04c31265aae0a139513c639ac8e789cb
MD5 aee3a12ec376aa3fbfc901912d5ba71c
BLAKE2b-256 351817aa5095212bb4304017d2a6f9669f799ced42a80487a1ad683fcb994f26

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp315-cp315-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 339a4e95844c1b4637fb4a0f3d256358483e26615f23b00cdbee52cb6da9bc07
MD5 f2ce637534541c6b6025fbfb859bac2c
BLAKE2b-256 a8cd544ce8cad97dd8f96e7fb045883d84bbc2483a4230ec057ac8c9991ed0c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2fea1e0597847ecf74e761efb0388999139e37fbc015a5555ba6c44475e5ff3
MD5 b16c09c5f214e0e29c2579041e7fce66
BLAKE2b-256 8666d5c8e0dbc1a5c1fd89a9e24d0872a1ecdc0d72cd744887ad2cd2deb8878c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a583799fef41d77b43a68f00730e89db8b15eae868c5f8c969d29f8c0c0e9381
MD5 4228e1309911ea36aede5c2c3931de0a
BLAKE2b-256 a226f7a2ec2678c4ccbe72bf30363ae009ca1174782115aee20b5f4cd2b284f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-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.0rc1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 46fba54643e02191b34e5eeaea27997b3546bba1a4d7e86833671d18d4e50e33
MD5 4534bd572394d1b482e6e6597da83836
BLAKE2b-256 d88352a3c2e2113d9c08031f17935974db843c4e31973093c709399e20535c76

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4414c7d0350221f9acacf2eaffa4064b0cee8b54d8c938806b2a1c6d82d2b4cf
MD5 b7a2966713e447ea63f5f4400faf0451
BLAKE2b-256 cd0728ba8ab28b9bf5eba07e04a21e1b9e70c16ef81bf493c8746aa78d196fa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b961374fa70ceb30bbb0dd3127941e45f14bf21fc318a34423f380bb7931ab5e
MD5 4b4d5cd222d72e7671c0644ef1b0d96c
BLAKE2b-256 d826b58103ecb7493046a82e9453d2623ed8591a2c3b3093fa4f7a67d1f68363

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 fbe2834eeb2be7a19df4b63181cb82b656ae71627c3bdf856ffbd16d589c2905
MD5 7a45db5eb99abda51d134ed51f575320
BLAKE2b-256 a62ee8c2e84ff90fa26d290dd01aa025d71315a703dcd4e2582c25a4d5723b26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9879254ac2d2b5e12773fb85aa6b0a7dff6783c7fc7c622c075af071028d169c
MD5 466e305fe4c62e1af01cf7e601eb509c
BLAKE2b-256 2515628a1e429a602243c8894bfb3f122404bfb24c9c145710dd231078e957b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 3c0af7fb45c634ca0cadf11c673261841dce5abfc5b7174e07ca09552c2e52ef
MD5 8d59e3b48a3995e869b7ab6241765d5a
BLAKE2b-256 15be96476195d04f46881586627cd93246c56005801d28c64cc58dbfde5a7e16

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 853ce138bb744931a0df7ce529764ba2e435ec1ec8752460a37d6f7227c5604a
MD5 51d29902f147137fa0dc690aaf2e858d
BLAKE2b-256 c91f26261fa10d58a792b21fcde427ddcaef61196d70b4860d055ace8f6f0349

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9282ee1d3d6eec79591e2c7d6619697746f9053a244fe5ad9e7ab5d40d2d7645
MD5 2c7faf39e7c4d13c8dafe3bb63411b5b
BLAKE2b-256 dcd83f9bbc9503b4472cbf2ad34b7a8d381e3e422c921175a5034d0f92f7f32e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 101a170214d32761d3e3b606986285008cf7bb75e2e8b1cd9bdc54d8f5787bac
MD5 4ef7eb84ee05b32f7fe478840a2f762a
BLAKE2b-256 a9141b46ee19bfcde21d6e93b33cd6c0bef490bf8b96a966114cadedaccff1ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 52b4fbd43c69e89a46fd43ad409ec625e8baac58d9de39a37844754882f1d7a8
MD5 b159eba66f37efc9261594cf64425ddf
BLAKE2b-256 e3724e7efcfebe72469bc7617eec0688092669aba560114c5e752f19888fe0b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-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.0rc1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 77d713483fd78d180e898505439816dd8dac1785cefaa42ad6fbd5ec770a06b7
MD5 a2d40f04f371be17b8fb66f3f8c1aa70
BLAKE2b-256 f2dc991afe78a9f2c4249453c54551056eeaafb4147c81f09446ffc41493003f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a400959686cf0716787bc9c7ffccc99dbd67cb30bcf896fa48365d5a2f0869fd
MD5 c477834b95ec9e1856a8c5855d402326
BLAKE2b-256 860c62db165df585a08be026fe5cd4f603a8619c013afe5f223d6356b78fb501

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0022e41dacd2d06cacecc79a387066b436e18f3c6cc5a399e56717f46b003e7e
MD5 3d181dcad7c06ceffb2fcd95f3a97603
BLAKE2b-256 fc50b8ca1f79668c947df627337890e9b56f7ff7425ce0fe061de386b965720e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c9f8777eaf9a007c879292304af5600ec41df1e0a915b17e5f0e5797a89a2ccf
MD5 9aa72152add5d33a6bbca72c27210df0
BLAKE2b-256 a74b5c2ac5ee1e9442e170431c5a15aafbd5622692bb09f683b7d739792c404e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e04b1c6c55a0e543afcf95cb25c9d6792ff5094772be89ab2c40d33a0cc858c2
MD5 99a02e8f9b026063dfee24f27de8c7c4
BLAKE2b-256 ad4c583a81c68da12b879961c34095d58620639091773cc24a4c7f20574faeb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp314-cp314-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.1.0rc1-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.0rc1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 41fafc603e35b761194437ae043d492aacfb14407aa24fc57f39727cc05012b6
MD5 562ad1608588fae301f233d28626bd79
BLAKE2b-256 bbedb91e5bf6f805c089c822c61ecc458a17fc1dc1bbe713f3daae5017192e52

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1768acea2e38628429aa0a4390e92edbbc47bad977382d1b80eeb3ccfadd5064
MD5 deaeb57fc21d9fba8f6f733b09fa17d1
BLAKE2b-256 26ae877d9f013b5f34692da3a00acd13bcb573ad2dabf748bb510642f92cf0a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 cdea78f2e2b990291f531b4ca567b7c747f73991d1ee5998801f4c8a0c287d6d
MD5 078cb30dc0cf798856029b41171c1fb4
BLAKE2b-256 3ccacb3e24e9fa4b2b82bd1a468e1c45ba3784cfdf3fd1a6533c3874e0c2de23

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 048d5ebbf733eea4aed249cf27cd0d7a1d35f1dd84dac7f7bfcbf16b88746202
MD5 a36d13d84ba2d3a04a656e0aebbb9da1
BLAKE2b-256 9a48973cac58343ce6adc841323a81d941c093ed3ac138a01f799d65af2a175e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e8e77b29bbca5ef23a76de22f8091512e0f89b9c4d11d7432c96d45e09d03d9d
MD5 dd18dd9d4ce036f2a2cb91d864bf912e
BLAKE2b-256 f1f81213dd7c498d9cfda78d2feaad9152957068ec37b27ece8612654780f870

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-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.0rc1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 af5efda822a0f9a7272049c4e96f6d1b0700baab0e3ef17f2c39e08dff7115d3
MD5 d4f26e4cd7ec8787c53ef261a9dd3cdd
BLAKE2b-256 9712eda667ad97bedbedd26970d0d83fbbff2d94ba0db8450ccdab578c68401f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aa88c98cd57bc0396aa1f3e022d4c40ccccacb0968e5f10b5cac27de53bf833a
MD5 209e7bd74e947cce19b21bbf2f3fad1e
BLAKE2b-256 697c1a714c46b9451a1b30bdcaa1cf69e072507014d6a907aa525edd8ce4649c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b36a3051fba1a1e78f675a1f201a5e1384e5ac475fe963cc0a191e925de08b5
MD5 01668726a5cd2328d8b275a5cbff7fe4
BLAKE2b-256 ff64d5587f00018a801a0720f121c1e82507bb130a170d46dd7b8ae4bb025e85

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a42f4842c995e3322aa1fafe56e5fa6dafccebc80e4d644fca0d9e117c09098e
MD5 b291198192a07af408282b8cec3ad8ba
BLAKE2b-256 4cd32908e65be16b8525edfb7bf19780f960ba8647d0bb67958b7ae166ddfc20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1011c8090fa5f81f8d2d9bfd0996b44dcc208d408b6e21e73106e6eb6cb73b88
MD5 741113d8b15089bf8c902c6c456b0ff7
BLAKE2b-256 88856511a3ca480f66375129ee1185f1c27494cea9022e157cc4a0c9d718409f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp313-cp313-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.1.0rc1-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.0rc1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 650d75ee8b2dfccf4f4e3718436be44821a006cd0a26785a56db5f8ff69b222e
MD5 91934e9476b0ddfb0d54950fc601ab94
BLAKE2b-256 9a5d4d5b2c3e44617e7076259dff2e3c8dd739e2b0f459bdd35051b40b6e8600

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d982b965a0e4feabbdd3c95b5f129a62624372c85103668319154cf404f14bd8
MD5 0ff3ee59477260f4a80fad02ac2a1bdb
BLAKE2b-256 4239d26065b3d02ffe5a9573f1717d804f43a8ac7860b2038dd814558c64901a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 fce982171863f406dde177696f9dc5730c87ad19b3a5e27bbb8110ba1a66ada9
MD5 23890dd36feeccce13f97c222286089b
BLAKE2b-256 f2e039ccb4efd7a28ddb0f4657a9b1b78479c77da96c745f5c6e733a2dfac4dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 322158d3e6ff70cf7e2b9beb002927620868a1dfd703c7f86f1504abe4f5cf86
MD5 446a337ce636d1f87f9c06cee7910db4
BLAKE2b-256 0c953d46b5975b79fd18859fa983f3afa29f56076b197ab4c2278b955592fe90

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2eee258582905b320facee2043a4cc0e04e4c97e9ab8742d2a36e3eac72a9d9b
MD5 6da672d835220f433955045da83bdb9e
BLAKE2b-256 6a2a4b2ac457a32dfacebf61337ce2c0582590935e7d55597f4dade264483c25

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-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.0rc1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 279774a6185668e4c75dff1141fe88892859c314f10b0f7b389aabcb427a69f5
MD5 a250d3cea91073072defd238760ace76
BLAKE2b-256 815b7a235216befbdf09f5672d0f89f5beb6dc346c99d1203ca0ba1c899d10b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 77abc90e901b283b1a00e3fa40fcd28d66a15aa5fc5e8c8eb99b4e5b9d7a5eb3
MD5 413c8e465ef4cd11a4560f2bc22fd6df
BLAKE2b-256 cd8ac53e196ca6fc15857f4d8becfd24e4727fa00924f84b6379d4d1297f5c79

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a589e423507b2bc69ddbd6ae3a3783a723b04cd47866a9112aff746a06973a8
MD5 c6ac6b6aee900bbfca50ba3379263538
BLAKE2b-256 2e016a9c79f6f6444a53e7d64ac956dc4de3fcd0d5aed66ff60bd24b3a691529

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b223133c42e63a307cfac20c34558a6315eda9a1355bd6ed2defe87fb28f8ae5
MD5 4a15da4ff3430ea73880a48198f691ad
BLAKE2b-256 82310d30c42cd54f493fce46c153b94f3e8109258fbaeb000f3977ea01412fc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6ede1d2e1e4b1230023c71fbca35478af7cb86b022934fd80d1bab0bd31b7a67
MD5 70f6ce52612169abcdaf94cc62c3dd87
BLAKE2b-256 62a5df7d2a8ffe9ec7b1ca9f66d6e4aa66ebcec50014caa77d2e896d71dc282d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp312-cp312-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.1.0rc1-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.0rc1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ec936512c5b825fe65119ab5c8fc4f5855ec8dd2db350e97250a0c137bcf10c7
MD5 747f5f42e588f91c06fecee9d7eb8389
BLAKE2b-256 08f4fc1ab2f201e293917ae0965b438a1accdfd33bc2bc019c1ee2e657f27517

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e3522b4b8d2683fef27588ff8d0496bfa75922b90d2c42335cab494770eb1d3
MD5 a064a977a6f636d81c34315443dc60ef
BLAKE2b-256 c4a58afc3e74bcd6b21dbd622d2b56596b1bb9df8f0071cca5d78528114bf56a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d432228a82a4672e56b71c34ace21bddea684a1d8c6e2b26eb469a02f575625f
MD5 767c318c1ea84702a98f238d20c2e6fc
BLAKE2b-256 bad52166ea10b4abf4096dceed2fa537dfb4941cfe9433264ca31a9c1b84b606

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b535cf569c027496351cacfa36bcad13b940d7bf11e6647eed63720fe123b00b
MD5 8e71737991aeec68c6aced9accfc51b0
BLAKE2b-256 2589f1a9c4482c8df4ee300c5f99cd9ad922f820c14d1089b2b5f46e4d29bbea

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 48a71c068db74f853006b79ddf80949d2401f54f44f1684c33a4d6b2862439c9
MD5 86179eaa1cb76ce179267ebc54cbde7a
BLAKE2b-256 7c4e96d73495e9e461e13465d3b064fd6f4866caff99d811daecb389ab6740e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-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.0rc1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7a74084c4bc1f39b3ab5f6e3fa559a3a413f67f6a0d7e338df64d912c15df026
MD5 37c6b0b06d3b4fdd3e1628aa5c579679
BLAKE2b-256 0d149462b0c669cf86eeadd554958889dac39cdf09dc76dbd70afa858401c641

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b8efb68fddf65b873cba4c2535f7b8ab93dd0bc16551593421f05ce82cb7d0dc
MD5 4dfc1d355097aa363846cf0980fda7bf
BLAKE2b-256 5df2dea6b624befb061f342c141c25f71691f13943dd13edac981155754677c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26ba8829966dd377ec5842720e7a37d597348441a0cdca87b962ad7c9d0a23db
MD5 ae173ee70af1d7b07670e96c5d6f82f3
BLAKE2b-256 b6636dd90baa4960ee6f04d8d1df452d477d240ea43fe5f591a4015c9fbf5e35

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ff22d2fe5a28c27c6e3b9edcf424bb9f45b333ae29e31ed0a05062ddf687b7ac
MD5 674efb98ccfca56c5620682916f3a94f
BLAKE2b-256 2b17a32d4b85d1db139f8b63e60ca72b2482c739748b4a768784bd2b1e86f321

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5184ee6e23d7d103da4a11787b6133bd6ad65def47f54c02818ff8b285064001
MD5 ad16eb98681464ed798bb90a334849b3
BLAKE2b-256 9056a5e16e0033365bc8ff8ad84b6ac97700a0b7daa653d9a3b52c66d53fb8f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp311-cp311-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.1.0rc1-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.0rc1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5f303a4204651f91fa0c804d75546c415e357727987c91401736bd8d56c0e5dd
MD5 29a929fc226a5c2aec573dc28a7fe7c9
BLAKE2b-256 3ea5560e2f3b500a9ae4cbeded70e6084028108e7c76b36f4c9017aa1773a19b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5eefcce012575ac060e88c923de2581b37b339e4cf511fe742b852816b97115a
MD5 0ce4ddd832858311a83648f3192195a5
BLAKE2b-256 399427f31f4186cd4dc4ee5fb6b5971e61383a06f122c61732ce2f43f2801287

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ed686b8fb86ecac7a0d7af539bacc48c7685f30f6a176faab0c0a58fb862e93b
MD5 bfd5f833050ab6e6ab8ad4f4cb4033b4
BLAKE2b-256 4a1f235d77c68874894e578bda1f91949e38ffb45c53f6794de5623c4598bed0

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bfdce9290dfabd386bb3fc0623acdbc3cdc32bd58f1709af17f74b4840ec90ea
MD5 9b95a2113c1859b67c228f827096c439
BLAKE2b-256 335ed88bd0d9fc6b0ad4c01805b79c57767a199e5402cc224e0dfb6b5efaf4bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 49a666792731d3b75856633b5878f14beeae57967d427f70d8a6533a3c76531b
MD5 690ded7bdc2d310a32342c4214a72cdc
BLAKE2b-256 df35bfe1836d2b368cb4abdf9d0a49e0439b52df7672cac5085ac448563f11cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-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.0rc1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 591dc9d55f73384fd1834e3be7e953d89bf23fc3bf59af9035900236a7dee89e
MD5 b94186c8deb9191c5c3c2ce290016e47
BLAKE2b-256 b1e68c1576da53a13f37b96ddaef01dee1668e308c997c6c6c362df46aef8805

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5041bed6469f1d193fe1d4267ffba924e401aef499cd88ad854459b2705218fa
MD5 c6a2f01a7c3d9ac52ecee851af886add
BLAKE2b-256 e694d3b9ee958a1677db91e7737550817567ad5b36ffcdc362215153c1e286cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc353b527499c11b7ae506a8dda762fdd3b981fb84a909e7e4688af23a63489d
MD5 10d5be6a51c2e345b391804204cf3702
BLAKE2b-256 002fff5f57ab9cbefa4486f62b62294cc2fcf76eae0041beb7ae4e80d733dd3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0rc1-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.0rc1 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