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

Uploaded Python 3

sqlalchemy-2.1.0b1-cp314-cp314-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

sqlalchemy-2.1.0b1-cp314-cp314-win32.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

sqlalchemy-2.1.0b1-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.0b1-cp313-cp313-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

sqlalchemy-2.1.0b1-cp312-cp312-win32.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86

sqlalchemy-2.1.0b1-cp312-cp312-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sqlalchemy-2.1.0b1-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.0b1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.0 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

sqlalchemy-2.1.0b1-cp311-cp311-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

sqlalchemy-2.1.0b1-cp311-cp311-win32.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86

sqlalchemy-2.1.0b1-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.0b1-cp311-cp311-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

sqlalchemy-2.1.0b1-cp310-cp310-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

sqlalchemy-2.1.0b1-cp310-cp310-win32.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86

sqlalchemy-2.1.0b1-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.0b1-cp310-cp310-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

File metadata

  • Download URL: sqlalchemy-2.1.0b1.tar.gz
  • Upload date:
  • Size: 10.1 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.0b1.tar.gz
Algorithm Hash digest
SHA256 0ecaadef7c5a3f8977966554cbc925628a4efcf5ce8bc57e068b28bc5eaf2b6d
MD5 03404455dc662752094695d33d1ff7f3
BLAKE2b-256 166ecd3cb312bd34423598ca3faf425c9b38f0916ebedd26b0b6581b64320bf0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sqlalchemy-2.1.0b1-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.2

File hashes

Hashes for sqlalchemy-2.1.0b1-py3-none-any.whl
Algorithm Hash digest
SHA256 500f30a0d0cc21aaed9d7506e4239141bb6536c62aac33dfcddb5d5f4fe29a9f
MD5 feacc43752e30f1b2a6555a5b17804b3
BLAKE2b-256 45eb07e192fa2e1deb500e86e0b86883037116447360951a6c3eda2ce4f176f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 6261fa556e3ac62d5e533d7c6a82ecb5cb29f313026de119337ad27b3d597b22
MD5 ef2cd0d379ede261cf5c666487693076
BLAKE2b-256 b80439b26fc86226e8561b970f4aeaf1a18b18453f8e53cf0ea3291654c61095

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d397f318e6afd90530a9c176428d3f16d42ac00b4cf878591f24c5b36e33ef7b
MD5 0a2064165271ed4fe938bbef42a00be9
BLAKE2b-256 339ee8a5a32617a00fdfb17049541ec28c34c845c55ee7378538834c3527119b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for sqlalchemy-2.1.0b1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 88744fe9d584640ebafd674450d1486c35200317ae6ec0a88d1d2c4e3ca5fdbe
MD5 434b20df7a144e57c42d29a7ffa5d8ec
BLAKE2b-256 302298d7daf2688b260f23d551f09238b29d1ed0902547df5156c1923d81354f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 350f46c51aee31c58a5c749aae461059dd4d70c24994abb4bf8ce9893d7e9f32
MD5 698ebf8219df4058eadaec9edbf3ab26
BLAKE2b-256 737df78a5f893f40537ec73a92ffa8b2af379d308742a55be726b272cfc2867b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ebb738aaf70fe0f84807b96abbdfa48f307cc55090e420e99468cffd50ea315
MD5 02678a07c6a8976a18f4b8a59528687d
BLAKE2b-256 356ec8817bc2179454603760b9efaa806fa9790d0d386e8561d7139e2014ffeb

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b1-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.0b1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b2d5d630149f80460d98b8c80c48b0f99784a10ab1bee762fd519f0a7618ea1b
MD5 0d733c16afea6f733cc820054dc7efdd
BLAKE2b-256 cabfe3da618a1d18e7bab9c0eb32dbeff8ff59e81ec62fd804459b4f013eca01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d1bbebb6ad5bdbc96bae95978e240b12c0b8ee42adee3647f643a70a75e4163
MD5 25486af940b5b69529355be245d639df
BLAKE2b-256 509dac99358e5091e525b2fed1336f0c3572f9025d2ca2e0b643f0164dbb1d43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2769a01e5337434ad74db5f9afd6bbdec5cd072ef1c8bd03afd7c2f4dd1ae74b
MD5 1b38feb450c007b7cdef1a4b189ec266
BLAKE2b-256 6f142b6445227d94802d8fb5df830a0a294264439a01a3e17c9905a853ef9857

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b85feb15b498f5ebafefd0045b844cf182577f1d3295519850644b7ef606c0fc
MD5 d7cecb16e0f7cd3417ab8de9f3973e14
BLAKE2b-256 318f4f4e4ed92e0c9fcae2d085a57e49940b205d777d166b74956cd5a7f3a109

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3517ce7b02568ef4da1f76fc1a8820b700c9f0b2386a3587fd5edec9d662bbc0
MD5 01a6b3b034bccf53c758316d9a253df0
BLAKE2b-256 acf401151c997a343701b82ba1432bcdd62fd7334bb1118aec24e3036e19c437

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sqlalchemy-2.1.0b1-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.2

File hashes

Hashes for sqlalchemy-2.1.0b1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a3ca2e76bdf95c2740c7d5dbb44ace275be820de4458809f17707d371368b10a
MD5 3a6ad2c8248c2c003190c02d74151f17
BLAKE2b-256 237fbd84eb64f18fc4dc5b9208ca6c903bfab27d8f31b42ad1489ce5c460506f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 212cbe54aedee001dc182d80801aa029c6bc556a982eed40dcb6b33dc611a093
MD5 275d214dbbfd2e0cbac276f0ea37d0bb
BLAKE2b-256 be1b6bda02502799a007bce68c782bfa2c76085a7c8aadef6acbc05b5393aaf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1c954de837e12333fe515d55f3d0a51aa90fb539e063e6e607ad64def3b6bdd
MD5 f2631ec20a6a7486bcae32443cce335c
BLAKE2b-256 2afa936aacfbee78f8af884cc1da18993704315c73f63a9533a166512f046fc7

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b1-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.0b1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd0a28e7b36fc2e7dfb4137fec66d65a62a33a8a9f57496b82456611a14842bf
MD5 56214361751ceffe680f0c45fbc4fe80
BLAKE2b-256 768f0d04eebd2ca2be81432e658a4f7bbc69dd0552c57d0db5391b9236d8d194

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 53427f3bfeae51daa5b0bf4d7541dacf88a32d8dc42ab26501752540ec1821a0
MD5 e47e40c1fa9868fea8c80de960937d93
BLAKE2b-256 d80784976e427516d14d50aab9be5235561ab61be8fd2871655a357c025a8297

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40475e0a9a5571418807e58893edadd391912ae8722eb20312bee0ebf6dd8a0b
MD5 9f43497c0db2d644e487dcd2b925de8d
BLAKE2b-256 d0f69a64f63ab3fdf4a45e9e645451cd65bff0d735803920f843b5f01fbe4329

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ef998dbbdfec59022d48d95385805eff2fc918bb5a7384ad3cd4a79165370d19
MD5 17022c9a0681b076deb021b7bdd3e65b
BLAKE2b-256 ba5ec94d768fc063b2d9eb31a2edb739e96403fe86cb8233b6a8ad2c9b6cb531

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 64647392f0826f0cc0334313e3f0f9534b9d3e501c79cafba3fcd6b3ca0f009d
MD5 dc27f61844eba6231c75d8fe4e106ad2
BLAKE2b-256 98e38f226cc06d4be4bc654f987dd92d712b29e15f3c0fd70c66c2180ab7cdb0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for sqlalchemy-2.1.0b1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0c0a2e8a539a4a8045e7e081889c3cc6ec50c5115fa0ef7dfbe0681a996db36c
MD5 854b3dbabea29f1cefff53887be537b1
BLAKE2b-256 2d28d674c4fe41bb651a87499bfeaf7f8149936b0ad768786c49e2c6818f326c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4e20644dc6b6e8895c698a52a0c9b67d7581cb968f3679289ce86a008717fcf
MD5 4dd97216a39b739b2a7a84573e7be9c6
BLAKE2b-256 815f57d1b748ce0b0a2334498aa2d28c0991b35e67c9e67b5e69372ae6f2d2b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c96c83a89d90c6e7191027cf058b36f05b95d5acdda5cd4ff734ab817399fc28
MD5 78cdc854d23e1cfa009e4cf59f747826
BLAKE2b-256 bcd906bcde421a55139b915fba14515538b70ee4546e6591219abd435b121fca

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b1-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.0b1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b144b3d3a5bf02d6ebeb13c872fe7fc8daf85f80ba0d09209bf99149afe4f9c8
MD5 09ab55ef5e967e10bdbb151ae449f536
BLAKE2b-256 1e22cce4fcd5534b12465b1aa02104ae98f762d0c3f1a1aa96e27370e2203f6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e99f7fc18824e1af93215fcbfabdba7a8d3efd432f36f7c24536e2926f39f65f
MD5 3d9c5f477c8468df9b5f9a5178889ba9
BLAKE2b-256 e7bda0ce862e5c0a2d715a7d0a7efc8044a017f38c79cd0cd2b6f29734b21bbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9639c9cb89e9d7685b3cbceca726d6464057f41b3e68c34e1fb7f902218e706
MD5 ac4470de3ce3f0500325739666a9238d
BLAKE2b-256 8ceba632b66aeb98e5909cefdb7d0d83a40adb4bea138105c87f4123b5811a4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 9a94b224bb88453c5f7571651c773335ed5623420b681e2830e2806e955ba3a5
MD5 e441cb98283bac97868ee863258b6906
BLAKE2b-256 1540b3ab99a03bccaa4ebaee67a3dcad378914cf02dcb3ff066215d0df9fa224

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 831ff9f5925837d167d794c65011154838731cffc573107152a4b4716e99ba9f
MD5 04cdfb07d61fb84921af70e189cbef00
BLAKE2b-256 f40940e657477386cf246b8a7d4e486bcc14d200bb5ec17eaf7285383be28324

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for sqlalchemy-2.1.0b1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 312ba2a62b7e6e2921d07536a5a6c95bdeec96864bd2285e1f27b83a3e10bd95
MD5 c05993fdd66c6615fba71d86ff3cb972
BLAKE2b-256 2483a6a51e2309af229f58cff2e71d41aa6abaeacd6055be00f1c0440a3f99ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94f1f1f232e99c39b92b4341cd95de4104db8e0d29e7d3a100a3aca40f76283b
MD5 75b29c63a639bccac5c4c298b76eab80
BLAKE2b-256 20bdcd18d771c1a8430c556ed342d516d92d3604826906ff2923b99ce0194793

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc41d79fbf8bd4ce65195baa883afb05956f4984f699faef986e15a62649a077
MD5 c57408d7859b329182d0c25bcd4e9ee5
BLAKE2b-256 ee13fada2139792c0eb708bd684e464779c1cbc4d17fdc22d31cb2c2429fa370

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b1-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.0b1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b7a5db26f28fa2dd837cbaff2f99acb14145b8915adb1fc62768da9e23cccfe5
MD5 f434fc6721283894ba55c5e0bc4a40ec
BLAKE2b-256 781f19b37b88fe7b7d3cbb6edb931a6dad99af49cf63d2319fd535dde4efa017

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 372ac280bd704ac2a996e00a85b659c9f72add115afb7807864a5a96c274d4d4
MD5 899d242b39a592a10a1ec6961646eeb6
BLAKE2b-256 f74e8691b720924a586e64d2e6ff97093f375ca49ef8683e16b540b4109ecd2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9d1b9d137ffdacf124b9f2145317559e99784603a1d636d1543090ac675d60c
MD5 18e533a542bcca96ef9b344b42277829
BLAKE2b-256 ab3999df35ec014ee8c7a8e4b82bf1d6430449f28a51de70ba6128deed9d888b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 7d4e41f7a7d7f5332d5b8c849d929c67c7eff91394a54877bb4dcc733437392f
MD5 58afc9ced543eb70de52973f4816eaf0
BLAKE2b-256 e34be18826e512f900c85ed3f4e9fd6ef0430f81244244c280ae4e08f96b5b5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 717260dfb75781ea1b2d4781213836fb2edc21d22eb7afacfc9d81e333588375
MD5 942721e6ae54ba1aedf251884d9dbba2
BLAKE2b-256 c24d33c1daf29d922d5909956abdbf310e359186b5ff4dc452100e3367a2c840

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for sqlalchemy-2.1.0b1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f97e2edafe1094d94427efd5e7aed753aabcb0622400e4b8e0b2fe623f0bbceb
MD5 fbd1d42de4843c504605e3204fbb29e8
BLAKE2b-256 c9f037b224001d9ec69c185db5192adc76279f7e434c188d3bd5219ea9437433

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f2e7ff1b36f67373b6f11a155e5ae78acabc0d9e659f13c98ffad258a0febc6
MD5 11ffc6f66e83cc39c2971601a2ef0eac
BLAKE2b-256 93ffe3e259ff78fef2b5fe914aae97f6e6619c1248817bd64d07029b5b9988ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 757645fcaeb93aa76f4df75ff0005a22e6f5a4c6108f2783b0fb0215c4d09032
MD5 ec3266c174ac161c76a0c28dc2bc2717
BLAKE2b-256 2b376bb9e3dc9dc24ead2054f7a86a0e3b6589375e63a88ab4e6feb62127a711

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.1.0b1-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.0b1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5b0f35fccde5d28c83b23e11b5fc1e2224b5e39340205d2fc20a6144038a8f42
MD5 f6d8fcbebd1dbb20fc62be47581c4255
BLAKE2b-256 d6f19e3d4a2d8a9b1d782ba818aac7a9e41be257a1638f6e6a7f7734e2bf8ce6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 db2c4227675e3f96bcfeddb2f5e9288a40d1a070c87088eaffc5169d2df67c4b
MD5 b559bf55ecd2200fe0baf0ab1fbeb3b9
BLAKE2b-256 a14fc0bc13fcd76bb99ec56f6c299d523dae67a19dd9393f705b9ecd86ed0487

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.1.0b1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d9d33d49ef273323cbd43a4442913b8ec3e734707482421238491f9bc905097
MD5 1540ada50aeaf903a4f6a6dfdfe6264a
BLAKE2b-256 14417d2c28e1b34bdc14ae6ef6bdb618e19e7b488f25f8031d777ab160b39c8f

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