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

Uploaded Python 3

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0b2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (3.9 MB view details)

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

sqlalchemy-2.1.0b2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.2 MB view details)

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

sqlalchemy-2.1.0b2-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.0b2-cp314-cp314-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

sqlalchemy-2.1.0b2-cp314-cp314-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0b2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (3.8 MB view details)

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

sqlalchemy-2.1.0b2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.0 MB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

sqlalchemy-2.1.0b2-cp313-cp313t-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

sqlalchemy-2.1.0b2-cp313-cp313t-musllinux_1_2_riscv64.whl (3.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

sqlalchemy-2.1.0b2-cp313-cp313t-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0b2-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (3.9 MB view details)

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

sqlalchemy-2.1.0b2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.2 MB view details)

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

sqlalchemy-2.1.0b2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.3 MB view details)

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

sqlalchemy-2.1.0b2-cp313-cp313-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

sqlalchemy-2.1.0b2-cp313-cp313-win32.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

sqlalchemy-2.1.0b2-cp313-cp313-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0b2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (3.8 MB view details)

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

sqlalchemy-2.1.0b2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.0 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

sqlalchemy-2.1.0b2-cp312-cp312-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

sqlalchemy-2.1.0b2-cp312-cp312-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0b2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (3.8 MB view details)

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

sqlalchemy-2.1.0b2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.1 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

sqlalchemy-2.1.0b2-cp311-cp311-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sqlalchemy-2.1.0b2-cp311-cp311-musllinux_1_2_riscv64.whl (3.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0b2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (3.8 MB view details)

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

sqlalchemy-2.1.0b2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.0 MB view details)

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

sqlalchemy-2.1.0b2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.0 MB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

sqlalchemy-2.1.0b2-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.0b2-cp310-cp310-musllinux_1_2_riscv64.whl (3.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0b2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (3.8 MB view details)

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

sqlalchemy-2.1.0b2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.9 MB view details)

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

sqlalchemy-2.1.0b2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.9 MB view details)

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

sqlalchemy-2.1.0b2-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.0b2.tar.gz.

File metadata

  • Download URL: sqlalchemy-2.1.0b2.tar.gz
  • Upload date:
  • Size: 10.2 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.0b2.tar.gz
Algorithm Hash digest
SHA256 5894d52de4fe6927f3db054999c66c919f53de082a0782b8db53977c50163de7
MD5 a1c3d019ac1b906b7a706f67d6130e90
BLAKE2b-256 c115e21c0f10756f47a0b7758326c60b6bdfe6e2a5bd1787f4474d42de78ba79

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for sqlalchemy-2.1.0b2-py3-none-any.whl
Algorithm Hash digest
SHA256 98605269d1b7e1d5d3ef680995e4714fc0c5aaa43615684d316079b6dbed826c
MD5 a78529b0d347f95418e581bc528bdcd3
BLAKE2b-256 845856810f8c4fe3fb14665f495852bee9452583b7b0c61cb43c062e9dfa7a97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 329b401a98c3f6d7d5e54e22f597b0f7b51ba975885e7d8338d0fa3827a81321
MD5 682b1192ee15edcc3a368cb7ff3007ef
BLAKE2b-256 d123adc24c4557684b62973b766459ecdee7c7264ea99d10e4b41e4475d16e58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 869e65a6a03040a2ad17351e620c44d87c205dd33b206b97a7bdfabd3e12ba4e
MD5 e11b0a98e605926df8d949f8feaef149
BLAKE2b-256 18b22b5b30c0ec584ab87d2d1027da8981d47885f3e71c48eac967c430731788

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for sqlalchemy-2.1.0b2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 253a90eb23b77bb38b2c4831989a01caa1da8764dfa969c6ebcc90cfdfa61853
MD5 9213cd3565af85a04a0f37d2a6e5c20c
BLAKE2b-256 c84622abf1a6bd6cd9a02694e091580e78e70406159e641c8b40063d7e26ed9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 923956e8a29cf90f7485bc24ef7abf0ddfb9bee13c453f2402952979ee5e518c
MD5 f911a06b596bbe9a56256adc628f871e
BLAKE2b-256 c5d4fbbbddc901ed4c700460f988b2d6e091c59a2ec7ad86fecb66b407203a30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5d1933aeb6c6724608b56e32159a0244363040add7dada77c702e68c6080493c
MD5 a2b3df8756e95efe97052cfc05b71f6e
BLAKE2b-256 f959b19bab5f783dfe040d60716ec20389517526bbc43de86b01e97d8fbfb553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db5b65e8c87249865fe0cd210c84d82ec5cebd04f41a4f34f5f99a4b0be83f3c
MD5 ad8d8dc33996f2a1c7229dca18adcc57
BLAKE2b-256 5bef6331c61603e17b2da39243f169fc2ca764ecaa7b22742cbe3d4a250dc32c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a81810f39d625bd8d15494002158abd75ea05531d2bf0724100ba48f2018654f
MD5 3b7e0a28bdd2f05a4eefcc338ab8efaf
BLAKE2b-256 0938b3863fd757d326ebdf1d5160f3a80defccbf2aa44f45e29fed0197dea660

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b2-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.0b2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 590c7ae9194187e6939d7a6815a69fce3a8aefdb0c72d3fd9deefd495cb32620
MD5 0fc80b1dc3597fcc1ce4357459d9fe29
BLAKE2b-256 ba041b134b0fc0a0b138eaaf0c30ba177f50e972f208f362de68300f433a1f52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d13d1a0e06ea59066cd22d48daf1fd528f4af9c20a1c34628dbce9c3e45c0a3
MD5 64d7d3dec48648d760050d34447634ea
BLAKE2b-256 035c5408e5171aefb700aa256561976645ca4cd5eb570f2bb6cce8a2040aa269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a4ce8697424b08bb7afc5cf504de744dc66fd2d06d1cc5da7379d46e41a34c17
MD5 7d753fe01bd7daefc75f8b6caf3e9890
BLAKE2b-256 cdc717cbff7a676aaa7c897f51c210cafffee841b3cede97bda5a814c7f4d5a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5a95b25514c8270e2cc96e964360c66a1f8bda7ec4d7d60fa31abd3916cf9d3a
MD5 67f43518287f7e32ff6d3ead215d639c
BLAKE2b-256 707916c26fc969438c44052eff9ca24c2ce79974bfb5f1ceb6e5ebf57d625abb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for sqlalchemy-2.1.0b2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 56a9b93c5fb8e461462348711754bfd80d2d5021f06fadc8085011af6e5ee816
MD5 47d4ce689b32f97ec78b3003a27f15a9
BLAKE2b-256 fbbb7eee91eb6847203abc7c9e82c395f3502866bf8b5cc197aa3df48f407461

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20d4c75722cb3bc040677af773d611d1a8750b22a8240aed25b626344f11d2ce
MD5 2b19190e60bcd1085f26016d1c4fb27e
BLAKE2b-256 ad90211916a0b3e8bad05bca2b95aafb968c44570a0b5bc8b5a08b4a7d0ff381

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 aebcfc64d89018d2565020a39c46b5b6591b87e66a12580d83d1b3e95cd24a8e
MD5 345dd7d751f8122f174dfbaa369d8173
BLAKE2b-256 f6fbdcaf5b7fcdd1baee4ea11f7f7282ea181975c2080b05b187fdb0af1fcabf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9cd9e2a89b4493aed9a270710886f831ce13b4f2d5544c6c1e646c3a03e3d4ae
MD5 abf582feb6ec94605f8e69e0e404b8dd
BLAKE2b-256 d368287ef5e0f8fea9a1d6fe2db51519fe06238166d19c366c350dbde516ed81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 17228ea80258e2c959fc8602058930a5634a59a4c1646045e5644bce11dae3fd
MD5 81ee4723ae3fe15957db9d8be544f13c
BLAKE2b-256 d714c98583e3dc1d3a8520019f0b438e9460d0e56d7300370aab951e5fd52937

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b2-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.0b2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aabbb7823155d43aad6128b8d4d83fb08684ee67b7417eb47f8196c201864fae
MD5 98ef025be46466f0fad873747a27a3c8
BLAKE2b-256 8d068fdb4026ee9d796f769f7a9fb8c7b15fd1465c3049f6009cf20e9779ccf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c0af40685238c2887345bc5c795c688ce5cde6dba7a11c12df1bf1dcef1cce26
MD5 faf64078415c5132ed04f9d0fd2a57b4
BLAKE2b-256 f62ee972e7654c0eb0e4c0beabada8e04b691133b7265f586d7feb6f59918b5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 740c20064e64349efea048e71d8a2c5cad5fe3313e70afe326114d59a294fbaa
MD5 8e71884673097481caee9aaf2ca2db13
BLAKE2b-256 d2e35250fc27ef4a8c6e6e490e06d6dc6b32e227cdfe05b6161c1d85a140d658

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b2-cp313-cp313t-win_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 4c0224df223d081d6bdb6c5ae44bfa1cbe9b1d34c336630eff99391e3176ae2b
MD5 9b45b0ca9e6c940a0d14d2b41a93a820
BLAKE2b-256 64392801d4e6ea32437e2ba44e659534d217414964d53430ab4050575a41fe7a

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b2-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 203b4687d415c9ab9eae6b97cc7d74d7706e615ca8d331d3c600332d742a87ac
MD5 2bf07817eb352e4566f517dd79beef44
BLAKE2b-256 bcfe67da6dc61fc885a935464091feaa7494f36618422d2ffbe9d16efc749fd0

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b2-cp313-cp313t-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.1.0b2-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for sqlalchemy-2.1.0b2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 749eed63b8ab195beeaa96ce46147bac24f884c3fdcdfcd6f28e87a1df4259ed
MD5 57e90cfc366f0d479008c72b44949fc0
BLAKE2b-256 266fcebace87bb64aa22cef666eb851d39b7f10bc910006c57a9cff21c6993fb

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 628b2ea58acc0d9ba0c040fd455fba957c4a4f6c15b88c931ee036f9ac4a1620
MD5 7e2a93939150a977c09d7ce84c815083
BLAKE2b-256 6a10e27d149bdf0891987c10a1dfbbbd8a659bfb330b44d214017fa4c8d0ea05

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b2-cp313-cp313t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4bdc555d0165f1167534f1818d8216bbe22b506b74fe3d93ac54d9b00d00bd8f
MD5 01e7158334ce9bafd859b0f4a2a40d57
BLAKE2b-256 0fe5af4f2104aab8495e84fc953831fa8b6be6660b7a9f7f2212eb3ee094b043

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27b851c95cee2b2d6185121847207a72a92fa805f1556b692d738205ff6ef0c7
MD5 54aeb45ee31e32cf50ba8f6f4a9213ae
BLAKE2b-256 f74007e842537080972cdc0296a25dd3691055f519e6e05285749d603065f13c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5bde9ec83286502e4945a73956140dad6a87e83d09343a681d3496fb1ff8881d
MD5 b7d7f59d03ea1173518af4a0f485bdbb
BLAKE2b-256 1848afd3e736d187daf6c8ce22382568517e7cc88cb5cfaaebf7eb9923e4a911

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 25ae52aea03b5316853ecd69e89af36e9eada4368584fec77865d2dfee204213
MD5 a80cfd0b76c2bf66df4c652729437feb
BLAKE2b-256 4f630bdd99c64fb4a1cb45e19c4f9c80889fc440be1dafb3c8431cc5e44387db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 634f66d3b18082c164a81119e8f807aa37b02918cff9cd4a2d4c11944aba4c2b
MD5 3c51e1391a89a79108bec9e1625b133e
BLAKE2b-256 f979e62e36859c86735a585c9d5345715b610b7a212d030c64b77e44e0a7491a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 1b0118e07946a5b2524a5544d699f142cec26dbcaed323847e2cde9e9bc21aa8
MD5 9731ab3301c868b5a27d7c29b813a3d6
BLAKE2b-256 e57000691534fa873f6c6750a5d2187c23bd96b732e1556c990b51a2e60d49b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dd32b76e46cac9e32743db3bb305920905920a57a6186a24affd918ff167837b
MD5 7908095bdeebcd43dcc125fa6fa1606b
BLAKE2b-256 9f5c793b927d9f7f369338ae246c65c9b129a69ad7814a311b7280a97663033d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sqlalchemy-2.1.0b2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.4

File hashes

Hashes for sqlalchemy-2.1.0b2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8fadd85aea6dda07065590948d6a818d2dc95e91b3adda2fad5b89ae672612f2
MD5 f8aae14830d5145f4f5f625f42a65056
BLAKE2b-256 daa4b70cdc84b5eac684ff42c705b90044788c1c31ac8f6a6a97e78116da8534

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2eb3741504f29cb8a7ba5c4477508ee002044f77faf2252f01a8891858dc0bf4
MD5 963eb028745e814613642d5f8d937b7d
BLAKE2b-256 fc7c00323465be53057ee1532cbf24abce5831a9af4b23428d6af39ea3e3241b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c086f118c3777f0c9d98e882e3025368d1a8d85d86f7f1bca1000d10df071752
MD5 0c054fc725474cc3e769f1aaf3edda75
BLAKE2b-256 8217d5a6a1edcad5d365b6e6764c91139f0fd600fc37b6d6f240be33d54c1ea6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e66b6b6bba68c47f890d680832d9fea189add25da09f45de31996dede11afb3
MD5 13e807bcc0587cf9887e212ba9c31fd6
BLAKE2b-256 e06b7045fcec55d44332df938ebd8bd7699a9fd641771c7d1929e060c5eac3e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 44949992dad6ba422ea192e7f7fd54e885e664809b4209503024cb342a021c07
MD5 acb4c351cd2312b6e0c69aa979e24799
BLAKE2b-256 965dcb47d28bba19fa8edfe039a27dd7f885b8fdd1223d23197a88130aa352a3

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b2-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.0b2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 390ca8723bbc763e64a3a7b1e8675f3ef481a11c577b16e223c9a8a83281f18b
MD5 b295011aaa556f62adbe0fbe15cd1920
BLAKE2b-256 2f60f12a1fa7004321defc4a557612b947d40ce5ba08720e1137fecac8fb3a36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b33853c0520b6aaadd9fe956d40bc4090a28f6c4bb2501bf517a56ec6efd2856
MD5 6b98039ec61525aad3c83155fb8b85fb
BLAKE2b-256 ebe5346a2ae5eb1b855e05df2ff5a0fcf181d1bff1b07aee26dea70ad9654796

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c31c8a2811281baa36192975cd3185b1f32d5d6c90dcf56b2f039046e4513c84
MD5 573923eba940fd8cbad2d1b43588c1ce
BLAKE2b-256 a460d312dcb0554cacdf57d0ea7b022ac150c469e1817d480c54eeb38de15b9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 81237c4eb153f67cb239f226f5f9baa543f776de11e66f5ac492cd206a04f68e
MD5 0070cc54f2330189ff27e66b3978c7ce
BLAKE2b-256 282fe82759deef263a5b1211a83fd21e246f91e56141be78f6999784b555bfc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c3d16576979781045d6e3ac3733bd70470caeec3436fd7f03841880efd8051c7
MD5 9e4d21aacf58943d7250edc099c98095
BLAKE2b-256 1f5a5beb22f33ae2d797e563719688b18517643312369b3a8833f9c15f3b4d04

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for sqlalchemy-2.1.0b2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9623006dfb3749c2fb3dfb2c572ec1ccc5bf6f784748b205ebbee7a74dbe14c5
MD5 7ac75f147add6986c2105e2115208b60
BLAKE2b-256 c3950493b922d07136035594921cc14ddb2d1b6866866cb9cce670eff419a72d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be52d2b25b76ba0289030ccde79d17480d0b79eee32043b73c6232cd5709e569
MD5 f47007c167d8562622a8c5ff6a9d0b6a
BLAKE2b-256 3ab0e1fdfe5bfd6600822a76b16c3d73841cd4843e9cffc859f05ede5fa374bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4942cd00701562dd74802c0e2ef291fb05273db314bc31fbb7fd18ae1f1254b8
MD5 87ff8a9358ad5378c7f335b362ee6b69
BLAKE2b-256 8688a7f280022ece60b54bd17c393b729393afaeaaad40dae0590b3d60f5821f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f0fc4aa64cada0c3804bfeeddf3d166f7a70682acfbdbfa93b034501340433f
MD5 5d30d8642167bf94da3bae384b92a1d1
BLAKE2b-256 74247812ccd596b8b3675dc59d9494f4e1ff245ee8cbdfe0c642c1628b2cf9c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 575c2fdb2301f1ba75195f08c081065a1930a2a557bddd06e8faa90092767e8b
MD5 31a36368afe9ed9a750475c400a68b21
BLAKE2b-256 cb194746fd6c436dcfd9881bebf189793fd356770ffb777b75ab0de742fddbfb

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b2-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.0b2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f6e1c10d65f2bd498b4660cf1a1149c4670b351b1aa61eb44047c765099def07
MD5 ff4fdc6f2abd7c7772b35a9563b9b029
BLAKE2b-256 6fb89980793307236162d62723246cb060b8d2b5d45aea23b80426380301d1e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0493f5895ed4ded776fc8ab2a01381767f89e2d33418f0a2fd8bc07bb2c416ce
MD5 2f88026bfb60d6e77d029de2a0627f91
BLAKE2b-256 5cb43e1e70ea5ed07330e86bfd17527e57d566055d4e0476db0418d3e6e59657

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e21c1fa4ec770f40b9260f7930bb5f71a9f341bb45f340562c46506cfa8e248
MD5 19f93022b16570ffc9d20e12b24af266
BLAKE2b-256 4e1e8bef6092dc2ac6e922422fbd70926291fb1f09583f8b87b94b0774ba4e79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 0708cd7d09bfac2ab6d1efa215add75e3fb0f7977331ba3ba05026269951c173
MD5 76c9bd72abaf6b3daa065b36943a41c4
BLAKE2b-256 7c1c0111ec7ccad68f3e5e57f20dc3f39fe2fe1fe924ce376622cc4a6abaa044

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d147a4bbf47b99ae7ad3ef01a41827e81d1388bb26a153557107063bf53c0ee2
MD5 6a778ecd39486613362a474bd118a10e
BLAKE2b-256 49d7ffca28a1b910bc677d3e44263e57bd8b520cc62be50870c516c8d8116aa0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for sqlalchemy-2.1.0b2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e4b1fedeadc81a46f685f5488b6e25a008923aecc2ca9713c0dc5855b45edea5
MD5 bdaca9e5c7e649e27745f882ba18d7d2
BLAKE2b-256 ed14524eb53c19392bcc078e3659d464a90dade7398303a522eca2eec11be28e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d03d56cb789c74fae0768455c98f115c11b0e60ac3a59c7a63f7afe756bb9653
MD5 84b17afda1d74796763bef85539f9277
BLAKE2b-256 03861b20d1dff0d3b5195cd46ac8c6ed5dacb8781a1a05a2639b2273ee90b5e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 cb3ef639f3e7d0279100c1a17ddd8b0ced522928e8bdb4c3daf6247bb1b057d1
MD5 b8658ee1b95e6c767ef86a8c07fff900
BLAKE2b-256 5f292d56308ff646bd61be69061363f3c2a07ff524fe031b771353a7458eddb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a9120b11be620d19aeb912d7b8e77fffdc79f6d7de5efbab5cc9722caf36fd5
MD5 9c1e80d90eb41048d5b61f47540a7397
BLAKE2b-256 35905646a5756dc2b6dbf4d69578d67cb2ff21916849ecb8fc05387a26857c59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e243de6f864c6329dffc0417d5671d1383b945b614286657740d2e8794844247
MD5 86996497980aa263fb7b4571a59c3233
BLAKE2b-256 ad2bf963a0f95f200354793d308eac133b5b2378ac5e7198fbbe5bd0c469f16f

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b2-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.0b2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 38b82f852b2795806d3789242d0de7cde42238f2c460dbd373a2d7dd9e1107d7
MD5 042daeef5cccb346f7003622b16b9d4a
BLAKE2b-256 f590136a4e412ae6a94080d59c11345c16862fdad587680188430fd59786d3a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 27929553e4dc124a8b5573d016250a9ec82b43e642492ae40c30579ff5861006
MD5 36e698658cfc11d5dd2eaec7edf06465
BLAKE2b-256 0ca72531dc02647fcf1fd6ee73691a54a1970451bdf0b66276016da0c96967e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b67d421278490802434a91cc80d77c4625aa25fc20a5a326340fce37f154c87
MD5 76bfe234efd254c02f539090febf337a
BLAKE2b-256 c1ba87958f44a2569dcca85f44519793f4db9fd2488fe2660a184410389dc8aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 ed2701cea35920f38307f8707b99cb73d02c1b935640101012381b9847877b89
MD5 047917bd55d56aba7a725465cf00cc02
BLAKE2b-256 1f881b8eb82604c617b9c0404ffc24542d30e05550b5f639452b20df082d7ffc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7f2de5629de8b6a761e435d101fd123811613eb62367580d6d06abbb22d8e569
MD5 325b244171920908a96e563b3b183fce
BLAKE2b-256 0676a0ba275f61981cab216258fab60c5e8d362ca5650778f95f7bf849c5965f

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b2-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for sqlalchemy-2.1.0b2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d6e86d2d5412d2a2643ea46dc43d390755fb1a82fe042700225f85d4ba277686
MD5 bcf51d88a3579617356db326372db48f
BLAKE2b-256 42d8341a78293b183aee37364f54ca5102006be6163c31786ca81478c9759e52

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92d5d2c529c01a26ecc1bbc5d629653f96a20b0ad1e1efc1890a19f8b1fbea7e
MD5 e3fbfa9014f22bc22b1b1e4e05a6e04e
BLAKE2b-256 64b549a694a6b94a727da83ed5f4498438c0cd3aeec8cbc8b3ec2cd6999637cc

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b2-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4a444841d5f57ac20304666071628db678600097db8ade7f44937c3bcd7ff101
MD5 c0a75ceae1a535a004483ec4cb2a802d
BLAKE2b-256 767c0b38308d1176890c79a285da850938781cf9d90aeb91f4f091df48922fa4

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a9f10d0e63155342598b8374916b4db2b841c8f8e6bb410b036a17d284cd0131
MD5 e01c87ec8bd0b93dc9f63aae3fea5493
BLAKE2b-256 8293c0481491985d4a78b950ae12c27e6945525167aebf20b956b0aab8f38fb5

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8aad374682770466b2ce40915530cc96706bb1b079611a067c4a71c26881252b
MD5 d4e1ddd2a42a6681a647b5ea86fdc5ec
BLAKE2b-256 b7beee5c2cb3df98468f3e44d9086a0dea0f3e9406ba6fa9e64deb98ed55ca82

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b2-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.0b2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c2dfd6ce5d5f3f482dc80c626fb15aee9932ad92ebc18ebdba80f0fc9ca9099e
MD5 dcd7e4538c08ee94e03db218d931e7ea
BLAKE2b-256 71d94894b36f5073ea2c036a6584ca0a09423469fe9b7bc5e9d65610706402b0

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dbfcd6b247e8515d761c92bfcac0179b9a2152449234a18ab8aeff8fa315e4ae
MD5 f235e52fb3974aaf4019c973458e861a
BLAKE2b-256 92a2753a77e9f5885349a8b2f32fb0442a2127347cecf8911766d18f6b384975

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dec03d71a34ddae2bb9309bbba60a09f25816c3fd92ebc97db9f80dead5ad249
MD5 e43bb2067802d782b16117a5a2b910b6
BLAKE2b-256 9651743871552a1bbec6a1403d610f3beceb4bf8969018110179261aad304d68

See more details on using hashes here.

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