Skip to main content

Database Abstraction Library

Project description

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.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

sqlalchemy-2.1.0b3.tar.gz (10.3 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.0b3-py3-none-any.whl (2.0 MB view details)

Uploaded Python 3

sqlalchemy-2.1.0b3-cp314-cp314t-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

sqlalchemy-2.1.0b3-cp314-cp314t-win32.whl (2.3 MB view details)

Uploaded CPython 3.14tWindows x86

sqlalchemy-2.1.0b3-cp314-cp314t-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

sqlalchemy-2.1.0b3-cp314-cp314t-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0b3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.3 MB view details)

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

sqlalchemy-2.1.0b3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.3 MB view details)

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

sqlalchemy-2.1.0b3-cp314-cp314t-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

sqlalchemy-2.1.0b3-cp314-cp314-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows ARM64

sqlalchemy-2.1.0b3-cp314-cp314-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows x86-64

sqlalchemy-2.1.0b3-cp314-cp314-win32.whl (2.3 MB view details)

Uploaded CPython 3.14Windows x86

sqlalchemy-2.1.0b3-cp314-cp314-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

sqlalchemy-2.1.0b3-cp314-cp314-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0b3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.1 MB view details)

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

sqlalchemy-2.1.0b3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.0 MB view details)

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

sqlalchemy-2.1.0b3-cp314-cp314-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sqlalchemy-2.1.0b3-cp313-cp313-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13Windows ARM64

sqlalchemy-2.1.0b3-cp313-cp313-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.13Windows x86-64

sqlalchemy-2.1.0b3-cp313-cp313-win32.whl (2.3 MB view details)

Uploaded CPython 3.13Windows x86

sqlalchemy-2.1.0b3-cp313-cp313-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

sqlalchemy-2.1.0b3-cp313-cp313-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0b3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.1 MB view details)

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

sqlalchemy-2.1.0b3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.0 MB view details)

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

sqlalchemy-2.1.0b3-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sqlalchemy-2.1.0b3-cp312-cp312-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12Windows ARM64

sqlalchemy-2.1.0b3-cp312-cp312-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.12Windows x86-64

sqlalchemy-2.1.0b3-cp312-cp312-win32.whl (2.3 MB view details)

Uploaded CPython 3.12Windows x86

sqlalchemy-2.1.0b3-cp312-cp312-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sqlalchemy-2.1.0b3-cp312-cp312-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0b3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.2 MB view details)

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

sqlalchemy-2.1.0b3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.1 MB view details)

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

sqlalchemy-2.1.0b3-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sqlalchemy-2.1.0b3-cp311-cp311-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows ARM64

sqlalchemy-2.1.0b3-cp311-cp311-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows x86-64

sqlalchemy-2.1.0b3-cp311-cp311-win32.whl (2.3 MB view details)

Uploaded CPython 3.11Windows x86

sqlalchemy-2.1.0b3-cp311-cp311-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sqlalchemy-2.1.0b3-cp311-cp311-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0b3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.1 MB view details)

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

sqlalchemy-2.1.0b3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.1 MB view details)

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

sqlalchemy-2.1.0b3-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sqlalchemy-2.1.0b3-cp310-cp310-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10Windows ARM64

sqlalchemy-2.1.0b3-cp310-cp310-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.10Windows x86-64

sqlalchemy-2.1.0b3-cp310-cp310-win32.whl (2.3 MB view details)

Uploaded CPython 3.10Windows x86

sqlalchemy-2.1.0b3-cp310-cp310-musllinux_1_2_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sqlalchemy-2.1.0b3-cp310-cp310-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0b3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.0 MB view details)

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

sqlalchemy-2.1.0b3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.0 MB view details)

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

sqlalchemy-2.1.0b3-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for sqlalchemy-2.1.0b3.tar.gz
Algorithm Hash digest
SHA256 68e9cd28deb1ea91c57c63bc16410f654e0c6c06942b3447d4af9f9feb633da5
MD5 1b1637bce80bf8b1fd235830bca66c68
BLAKE2b-256 8fb43eae7859c5a749016162e0d1ff09810e1221b731f2d28d422b9f2324d9df

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for sqlalchemy-2.1.0b3-py3-none-any.whl
Algorithm Hash digest
SHA256 53266e619324e252dd517d2b061316cf01e4376857d8e5b65fd74dc92fd0c326
MD5 4ffb9c3f3fbde0e52e9c8c73ee1ef9fd
BLAKE2b-256 0221341897a151b5d17d069b855cdda4da5d616e12a9456a80909cd775c74d11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 fab024f1624b76182609884a03877b4e1a5aecd76616c4b74ffaace50cf85dee
MD5 58696e525c26ab15a2dd21b079ccd06d
BLAKE2b-256 5fff7b97eb3e81fe5232ca8e90c5a35c5c4afdfa8e3e0944a4a8ff7193991d36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f45b74e818c347d5dfbb64e8b962cb7a21404d70f39318aebfd51e2f0fb244b1
MD5 e850a2a321860be8778ee3ee3e7b4d79
BLAKE2b-256 71919068db9cf0e6105502b49b26b3833b8a43b37aa8233d8b997dd6829720b4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlalchemy-2.1.0b3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for sqlalchemy-2.1.0b3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 2b0e40f34bd7f936472a4cfdc215a3bdfdb2f5c8697eb55f90c471e7d33b51c3
MD5 d5eed82a1f854b57e95f659af416851c
BLAKE2b-256 fd9aa77b241714390c2fb82d9136024abd1e14abad32b944da390c7b916c793a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 656d6539bee0895fd82823ad111ef49d971289563701b59586d595db84746f00
MD5 f9efa430cc79aaa680ff12cae5d36ac1
BLAKE2b-256 4401493f0ed70053bebabbbc012914e02f41f028ac127e9dc1f30655bdde207d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4560bf101d13ab20d75ebf70ce852eac6a9c16372a820c39812ddbed0b2d9adb
MD5 5e4df751767e18add9c84f2bde46e2d5
BLAKE2b-256 4988dd0df1d0164be2112d26c5b86519200a35cf3cd34f27868c890bc9b6781b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0b3-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.0b3-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.0b3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c7c780f4b6a720b80ea43eb2932cad9ab2a49afbb29ef6d96ac9ac93bedf18b
MD5 ea871b51745f7c393176f66090d04eb8
BLAKE2b-256 b2f8593826aeeba004f1448393033cc9c52a8b074d7360476a3bcf7c36114b4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3bf8f31ef487cb609918ab7a04dfade2a15cdbd5430de6fd6b7421a336c6a581
MD5 c34349867da1c3c227ee4f370af489b4
BLAKE2b-256 b8a78b01766945797344b7c21b24a61add71f6574029b3afb999ca465d28dea5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 998fd1e19275dba2889b53d57db2df95e190cd2867819342b856ec79c74bef00
MD5 33ad8044e8d0b418054064ae5a501b9f
BLAKE2b-256 63d44cce08e36b9f0bc273370dd93debd43937515f9a4c312c875b1b0242f8d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 86ccaf41f89b98da04afc933e229ec54ede3674b4fe751f2cb3d8c002293a617
MD5 1d5b28c95d6adf7f9595f8f8f8ed0856
BLAKE2b-256 b05af1867cb2fa2c955db78b46de1fcfb64000e4862f8c529fdb1520806cf90a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0e2ab1d4f7571de1f03a928b52384ca5bf275c3c18e929183255d38d18c3b8ea
MD5 31590a0f29e05212d11cf30b27ab179b
BLAKE2b-256 ea0d94f3db2443ba2b7189e94438ff0491a16a3157121dd2b0893e3900b38805

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlalchemy-2.1.0b3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for sqlalchemy-2.1.0b3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 509d9512ba8a1407b29fa9884fb8873c8997ec0d96ad35ddac532f7f86185741
MD5 5279a164d67199955a534ab352c5a886
BLAKE2b-256 02ebc2109bc126c13fc0a163eea51b790e96ce8add3c81eabd849fc698ff0e33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 030fb4bae174e47df07f2f2d03e122eafe2d901df5655cd8cc2756396343a38f
MD5 f47ea127e64d6bd77d0e60112e747081
BLAKE2b-256 d078cbbd73debafbf5470af955415d5e712ff84ca147bb2838b132c5f9a020a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01175cf8f66306fd33da4bf11f6899df9dc8c117b1604556967eed97c66a250a
MD5 81ec2532265bf400d3fa44003f478ff8
BLAKE2b-256 7a74b232ad26ab9beb950679f65839aea00cc52c9600c529f19c7e080fdb5b0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0b3-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.0b3-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.0b3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e09e36e4e770483e86c5408bb8cd76286ff4ab21cfc732da2d46cccd5fd11130
MD5 86b51b8f87051797d119075244660687
BLAKE2b-256 cbb2f6a540617ae24a07cf4ea363ccffb28efae672f9b00a0b2d805b7536b24b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 95ced600a762b3c3d0e3a39986c87613425442b99bc03947d6c4c78983090430
MD5 d9818ccb9b32f95be71c05085832bcf9
BLAKE2b-256 31b4ef2fa5ebf56cb38d021d7423231d004082975aa2a0a811496ca0149264a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8ca6931a259f32cafe93054a227d64b16fa68d29ba22d60ba223762a2dae272
MD5 7e264a0772d4d3c0c00927ebd8ecd2ef
BLAKE2b-256 925b85b4ccdedb39cc1ad9164289fdd94a5bd0a015b05252aac1a11eb089e498

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c1d4da3c9fe28dba3f2cbc8dded02f0651f9f94f2b7c92b9192def6480b64509
MD5 f3d65ce6f4856e38c28d4dad0173c3d2
BLAKE2b-256 ebbe37f0ac546df0b034e8d2f5119816be107c8586abb52868f0372b9430d3b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 db3ca3476e1f94576936288874d19a9315a0babfe9119edfdfdb3ccd133de171
MD5 141d5243c195c202a54662cc08bdeb46
BLAKE2b-256 6e0d877da5a03ff113ae32d6968abe6671b07de99a35f64e8a120d1ab13071bb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlalchemy-2.1.0b3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for sqlalchemy-2.1.0b3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5937846dff90bc3730e11ac94ef1b860e6079676d5bc34777428e8834a4343c3
MD5 9fdcc99be239eaaf0ce0b35ee24e1e85
BLAKE2b-256 9696a5f8d9723c9ffdc8143dfbde4447a674e4e64997d069a7028fd9d7809be3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 127c8623009b3c64f0066a7ee2b37fec7bf8cc1dbe6fd42f9db174713097a0d7
MD5 989cfd8e27ba78ff634f03469ec951fc
BLAKE2b-256 0d15bce375cb8f413d9ebb81894dfab7dc194d348e5db6e3b973769317001353

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3db5ee21c3a295c60de92698bc65cff9cce1720458734f3705c23fd44737821
MD5 133676be00ba5d55c5c8ec90f63338e0
BLAKE2b-256 bc654e2a66ffa178835ac83cdaa3f702f025666b99d71108d2a1fe28c8562a2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0b3-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.0b3-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.0b3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 22b17a03984475f08bef8389f9f3ccd6a8d5e9192e4f184d7925a3b540605ac5
MD5 8db9d2838b32364c539530ddae24547b
BLAKE2b-256 dba65ded25a8ccab96f54e0f1d38c18492fbfc95fc673e77575a9710f468c9e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab3b2978a73819cd70da3c74e22f95a20f125ceb1e642d757ab431eb2a30e3ef
MD5 3b0bc57aa2b199048104c467fd9100f3
BLAKE2b-256 db7661371c7d2e0a4528fe94f77577e7859b2c3865998b316e2de966be8a09e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a47a8b5d06879c012ef7fa9d9169462e950ecba2be2e3f681606096f4baf58fa
MD5 beb7d7276e1cb93d78f9592938a33825
BLAKE2b-256 1d9ae73c1e52f7c164bccb45d4e55e59774130936eb9f0fd26932c2d6a282128

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ad798a6b6aa6e87f1e229e80be413f508588d8fa65be172e2d9a587cef73a99f
MD5 d0481a2720dc5215d0d388e470cf8df3
BLAKE2b-256 95dfc43f0d96d450663563ddc620decbab8688f71d2f2ab4297bf894784cc99d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cb6d3f81fc37329d211e2ccfe1acfb115f514480aca0609b4c42d0dded0d423c
MD5 f05d8dc89545a47a6944378db763cc3c
BLAKE2b-256 8b8ce7f474971939307c82a293f3dd5ad898760c03006441e762212fc597f9b0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlalchemy-2.1.0b3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for sqlalchemy-2.1.0b3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 60234b666e4c86f270d8387bf716c89a8e2e5735b241500fbf33e2530f598d0e
MD5 c6298286feeec232bb0516b6faef7f27
BLAKE2b-256 b67fc5723171128ad5f073a018b082303d803465728f55a042e35ba1f0039c2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4c1419fd1ec33d26caad80c70fe2c17e84a0702a41226c0b77ea089ee38e925
MD5 454494380dcaefd6fb2f6d6d43533d9f
BLAKE2b-256 5fa8ddbb94ebdb008708a3dcc46dcb4a7bc54e88a259327862e617cc266fee1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4d17b5c21c24a5b7b6609e007bb2a8df1c144264be488dfe1ab1fb144c608897
MD5 4b215c5336628455aad00fce4542d895
BLAKE2b-256 968aa7aeb2775038fe8fc1e979a7fd1da438225f437a1f8da3f7fe56746ecf17

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0b3-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.0b3-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.0b3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 14c037cb95d6661fedd0da539dcf34e9a9cf52f6760de8d5081a2b944eb7957a
MD5 f9af481306808e80f641d63f4bc14844
BLAKE2b-256 395eb1c638437eb137b0db225a5c6713384a78284e2a34997ee4fd027233ef39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4f78fccc17b46639bf583e299b0250de67098be33d101081c4dc6bd42c299188
MD5 0ea6f278c6706ea085277cb327395c84
BLAKE2b-256 608024d235b758c147a314ae4ebae04cd27ea32dc12770669073c99403678d2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c727f18d6689caad8af4633fb98420a2b2ea72729284cd2ecfb9e6caf8770a2
MD5 41f011e5b39a77a54357a9d679de8172
BLAKE2b-256 66807ec36894bdeee665501cd1af2f7b302f82aeadd91af0b9c86e0c618faf2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 aaf982beb4809aa379af5e37af7fe11c437b2748bfa22aba22cc524b07808c6a
MD5 0d7d3b90791d6dfa87d64306a1e34193
BLAKE2b-256 d8b5b27445221f6d4550c327bf2a52c22021765143b86b9a82b8b37f86b74ef3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 14f79c2c10d5573ee697b8ac71cb9d924479bc93b1fa5b687831d3807e5bf404
MD5 1052a9967e97d9b0ce4bbe8ad3476918
BLAKE2b-256 c28dee33ac82c901a7aee5ea1bc8a75e49b87f1d317e8cc24d7ae9278f065318

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlalchemy-2.1.0b3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for sqlalchemy-2.1.0b3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d4e6e16d82130c47aabbba08e69d37dd010f3754a093fd9ecd7f6a7dfa4a7afd
MD5 08b98b70015576a66f0b563ba705aed3
BLAKE2b-256 3c5c25d8746b2da7d3d1bc385b6beef70501545d40c070d55b11a2ec6e43aab3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8c1742341b6f84f6b0a2325196e71ddd9089c36f911f7caac0a2752a79962cc
MD5 40c074d5835c88bc063578f28b2719bd
BLAKE2b-256 cfba5ded4ef9ebb7d9aa91f3ee61c92c083935cb4a0113c53b6ddb7db5de31ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e9153f3b01b5ae8bae828a9de443c9cfb452a603438bab0cdb150343b31c289
MD5 2f0a5c9306ef109b3bc1613071294c30
BLAKE2b-256 35679e06af76082558b21363d6f6c709a10088858e6824d1c98fff7c18bd8727

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0b3-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.0b3-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.0b3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 929fe3415cc4791e343397981fb372753c59f750ce2d0fcd1de2a442406dbd02
MD5 6670b7cddbe88309f011dcf4ca643fe5
BLAKE2b-256 02748f80b0db6d046ad74317becf7034c216196d3ff61b7e7249ea13b78d5a45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c4ff2d1abb3528a5343e8f3cc4230a9cf6c34ef620624d89cf280345a66559a
MD5 c47c073186de7c69ed2f61932ab42e53
BLAKE2b-256 e8938c6728645af85b2240d69c090fed6065425f5be094b8c45acf8c90ca2a96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3d9e872f235bea2b4e723f43da5a738c79a88001c07ca2514da7f404f7c4fe7
MD5 384910ddb499e781398dcf1c582b85d6
BLAKE2b-256 f9975efdce3b17e57b6454c7e0d3f5c6c41d8010f5e02cf04ba86af671d95e7c

See more details on using hashes here.

Provenance

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

File details

Details for the file sqlalchemy-2.1.0b3-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 55acea673789d9dea931ee2b9dc2231d091ce0976bae64a5ad04c2e4d0b2cbe8
MD5 323a2e9aae9faedaf63e6128e55fdbb2
BLAKE2b-256 b5af19f1e3de2cbc912a8ac7df72d728130f3bdba9e7d0b02c4bacfa1f0d3335

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a20644d019ac2f8e6d37959f1171ccf99852338ca19950863c1e3d70c505a9b6
MD5 2a3537968453dbbbde8e12bea8f4f22b
BLAKE2b-256 295d9a6ee5346917cf20305992508c363772c4c8b7d86dae628d3ddfa584ad80

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sqlalchemy-2.1.0b3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for sqlalchemy-2.1.0b3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e44dd0e4e1ec4429e7d235662d2130703753d136abfdb1d3e165ca77c83b495a
MD5 6d8d11c0b91283f88da7eb0209eb9740
BLAKE2b-256 ed9194c8250e1a3d4e002d79271752510df77cc1e19b33372d0d0cea67e50351

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 486fa1118320a748033b3e7a23e49d58706b4ce1b98d1f6505755c58a9c38e80
MD5 7506d204f51cbdf935c77f1e066738a4
BLAKE2b-256 5f63193b32dfed7b4afe1b554025e81bfc85c7c69a87fded3ab1f802ebdea159

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62f231c91af1947c2185317c41cd5077d9890d3c11116c49eefb39b454ae0f8c
MD5 d235fa6c679189a0001c4393fac6c00f
BLAKE2b-256 d1ac33d60010b05ea556017f5162f2bd420bc0a7f7415531f194675c010a77a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlalchemy-2.1.0b3-cp310-cp310-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.0b3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a4381da62435c56570d3717101a2a02c1f7e71975ef4fd3a001b7d152394ed4
MD5 93d1d36b0481673495bf31426325b5fd
BLAKE2b-256 9b33cbaefd9e83f25a9139da3e525effd23de2a8ac65bcdf64fe1d6140ab8e5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dc2115cd9d6997a3c50b13a63c3f60dac46f394cb744017dba189aee553e186e
MD5 2fb17038f5f4b56965b09ea209658914
BLAKE2b-256 5168c8e31b4e6ad0b5b6d32d92045a01a0e17c66efb1ba615070c132a6b03419

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7b1666bda952f6f63f5ad108c62c6373c5809e999f92e9da2beb574a0748c79
MD5 49c557b75bd1f4cac88fe2f2385f6044
BLAKE2b-256 883a99b667bf7eed77936b50562cf147b1ab7bcbd932947b9bd82da3f4de4a67

See more details on using hashes here.

Provenance

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page