Skip to main content

SQLAlchemy

PyPI PyPI - Python Version PyPI - Downloads

The Python SQL Toolkit and Object Relational Mapper

Introduction

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

Major SQLAlchemy features include:

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

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

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

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

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

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

SQLAlchemy’s philosophy:

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

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

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

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

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

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

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

Documentation

Latest documentation is at:

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

Installation / Requirements

Full documentation for installation is at Installation.

Getting Help / Development / Bug reporting

Please refer to the SQLAlchemy Community Guide.

Code of Conduct

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

License

SQLAlchemy is distributed under the MIT license.

Download files

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

Source Distribution

sqlalchemy-2.0.54.tar.gz (10.0 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.0.54-py3-none-any.whl (2.0 MB view details)

Uploaded Python 3

sqlalchemy-2.0.54-cp314-cp314t-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14tWindows x86-64

sqlalchemy-2.0.54-cp314-cp314t-win32.whl (2.2 MB view details)

Uploaded CPython 3.14tWindows x86

sqlalchemy-2.0.54-cp314-cp314t-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

sqlalchemy-2.0.54-cp314-cp314t-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

sqlalchemy-2.0.54-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.6 MB view details)

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

sqlalchemy-2.0.54-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.7 MB view details)

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

sqlalchemy-2.0.54-cp314-cp314t-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

sqlalchemy-2.0.54-cp314-cp314-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86-64

sqlalchemy-2.0.54-cp314-cp314-win32.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86

sqlalchemy-2.0.54-cp314-cp314-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

sqlalchemy-2.0.54-cp314-cp314-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

sqlalchemy-2.0.54-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.4 MB view details)

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

sqlalchemy-2.0.54-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.4 MB view details)

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

sqlalchemy-2.0.54-cp314-cp314-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sqlalchemy-2.0.54-cp313-cp313-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86-64

sqlalchemy-2.0.54-cp313-cp313-win32.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86

sqlalchemy-2.0.54-cp313-cp313-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

sqlalchemy-2.0.54-cp313-cp313-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

sqlalchemy-2.0.54-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.4 MB view details)

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

sqlalchemy-2.0.54-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.4 MB view details)

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

sqlalchemy-2.0.54-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sqlalchemy-2.0.54-cp312-cp312-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86-64

sqlalchemy-2.0.54-cp312-cp312-win32.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86

sqlalchemy-2.0.54-cp312-cp312-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sqlalchemy-2.0.54-cp312-cp312-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sqlalchemy-2.0.54-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.5 MB view details)

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

sqlalchemy-2.0.54-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.4 MB view details)

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

sqlalchemy-2.0.54-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sqlalchemy-2.0.54-cp311-cp311-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86-64

sqlalchemy-2.0.54-cp311-cp311-win32.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86

sqlalchemy-2.0.54-cp311-cp311-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sqlalchemy-2.0.54-cp311-cp311-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

sqlalchemy-2.0.54-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.4 MB view details)

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

sqlalchemy-2.0.54-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.4 MB view details)

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

sqlalchemy-2.0.54-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sqlalchemy-2.0.54-cp310-cp310-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86-64

sqlalchemy-2.0.54-cp310-cp310-win32.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86

sqlalchemy-2.0.54-cp310-cp310-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sqlalchemy-2.0.54-cp310-cp310-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

sqlalchemy-2.0.54-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.4 MB view details)

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

sqlalchemy-2.0.54-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.4 MB view details)

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

sqlalchemy-2.0.54-cp310-cp310-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sqlalchemy-2.0.54-cp39-cp39-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.9Windows x86-64

sqlalchemy-2.0.54-cp39-cp39-win32.whl (2.1 MB view details)

Uploaded CPython 3.9Windows x86

sqlalchemy-2.0.54-cp39-cp39-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

sqlalchemy-2.0.54-cp39-cp39-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

sqlalchemy-2.0.54-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.4 MB view details)

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

sqlalchemy-2.0.54-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.4 MB view details)

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

sqlalchemy-2.0.54-cp39-cp39-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sqlalchemy-2.0.54-cp38-cp38-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.8Windows x86-64

sqlalchemy-2.0.54-cp38-cp38-win32.whl (2.1 MB view details)

Uploaded CPython 3.8Windows x86

sqlalchemy-2.0.54-cp38-cp38-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

sqlalchemy-2.0.54-cp38-cp38-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

sqlalchemy-2.0.54-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.3 MB view details)

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

sqlalchemy-2.0.54-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.3 MB view details)

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

sqlalchemy-2.0.54-cp38-cp38-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

Details for the file sqlalchemy-2.0.54.tar.gz.

File metadata

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

File hashes

Hashes for sqlalchemy-2.0.54.tar.gz
Algorithm Hash digest
SHA256 baa8521e8ee9f24e75dfc7aaabc08020e551ef0d48d7c3e3536f5cddf277586b
MD5 716aca148c04d8bfe6e6aa6bd1cdfc1b
BLAKE2b-256 299c271aa905cf2964f841371a97f3e63ab692bf51b4423d0491e67bc7f64037

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-py3-none-any.whl.

File metadata

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

File hashes

Hashes for sqlalchemy-2.0.54-py3-none-any.whl
Algorithm Hash digest
SHA256 7e33a631ab1474f8fe6b910bd1a07b7b8009c4c78cdd3fb18001b03e3bc2e1d2
MD5 b65e24abee1aec8059f2262ba45c0ed3
BLAKE2b-256 24a1bd5e3e99bc9c8863b51ac5b9b03008a7f2da8c6b59695992f5c654e1265b

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b67c1744e453af833667fc1b84de07adb4a64f3536ef52a8ec5ac2b941d43970
MD5 f8294ab01d6455acf5d30acdc18693ca
BLAKE2b-256 77f8296c2e46b4ccd3f29b00b954ef2f195dde32f98e352ed21de1d292cedc0d

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp314-cp314t-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.0.54-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.15

File hashes

Hashes for sqlalchemy-2.0.54-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 b9086b8ad48280ef6a7ba68262d5e44f7db1c4cb1973e8cdae8a9f467ae66f51
MD5 248699c7a748b2099235182a66f65873
BLAKE2b-256 dfc0b5775465d3b89061d7c46057c31c56ff8fb6c509550b2b0c6570ffc248b3

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e08397c6c42f53b2488acde9108b8bfefd52d7afd1bf2f03d2ffcab7a204aceb
MD5 b210f4fa3f29c4ea8db296e9bc444ada
BLAKE2b-256 49bb9df1bd81c2f2d000cf5e7a1b1a9b331468a3aab939ad983355e701fa42b2

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 69cab115c40fd02c5a22c68e4ee630fa6ef9a1650f1de944419aab1f7096fc4f
MD5 85954ee16253a74d7731dc12b3a3c7f2
BLAKE2b-256 aa19724d0a6a2fb2a86ff2d6008e581c258f722d9b7d8e52adc7b79085febdd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4e55a0b96a1577a1e108c91ccdeeb9cd92768f28ce206597311c3bf6d6423abd
MD5 9998ccffad07f509f120cad6982ea9d1
BLAKE2b-256 eb2515dfe6814847eeda773bd58ab6cf42a94b0176e5cf25a578fc1165777160

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 18a8b6417cbb7b735cf91c2b59453c2a554cefa0a8d7bd15aa35740739410d77
MD5 ab6908691e7318135227a923e22fba41
BLAKE2b-256 cb2e490ad7b3731116cb48ba170f7722eaa99a89707193e54389ca84b7ad55af

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca05f4e7852cf48083b0cf157e4f9504b7068780422a50fa82f45353b8c5e14a
MD5 4ad17f3f52148eec09f51edb86057dba
BLAKE2b-256 c3a5c211a9a7af83222509519407e16a4db760c6df3d03be69ebc5414d465321

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f4e8f955d13af83fb4e35c3472e5377ee22d3445eada1e5e48199588edb69835
MD5 79ca4c940b6c55b7ec00dc775beabed9
BLAKE2b-256 e20b3594f1f51769feb3022d686135dc5d8682a12345ed15ae61d0c0ca42cbee

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp314-cp314-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.0.54-cp314-cp314-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.15

File hashes

Hashes for sqlalchemy-2.0.54-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 842540e4382472f23c79589995752648d14696a8200d0807ed8c5c59c92ade44
MD5 7e2c3d5ab23ba11783cb48a1907f49ed
BLAKE2b-256 342f9c2aa5efc642b7f3b985d13565cd1a5e78856e079ef3022796fea5180498

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87ba8834318b0d8dc94fc6f405d071b5c08be32a6c3fd68107fd6952ee949615
MD5 5725c0fd05208efbac861f3525450d52
BLAKE2b-256 ebcccddb6cbd4408e5c55b3bf722be26b9d3b54d42509f901b7ecc15debd3d1f

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0956dc754d3884da7fe60097110ec7a8a105d26afa2f0844468f4b1598c6912
MD5 28cebd2a9ff828e5465f0df0f124fcbd
BLAKE2b-256 af323eaa930bcf71d17a72587081d2706a5fb97ab3f11a7e0fb838f581f7cff1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f84099e4b04a5c2d44500a2a8302eee5af4bc6fee63e8c6e9cf6786e747280e
MD5 df35175511d60c24b34229af53573ddf
BLAKE2b-256 59d27f0c77f8e042cb5f28275fea29c3080b4ac6fd4b3fdd7f59ff1ef3e28c11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5417322b3c025dd82918725d3bf09ec105fac95efc195722b8b06e1d9c381139
MD5 c5ea6924ef2015c849c1a9421f2fe623
BLAKE2b-256 1228f4424f618bd1f373761a32a821d53ce2c257350e9894bae9b968cb03d8fd

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abd6b21bc58e91c1932eb5d6d7f1bd44a551dfec7b6a7f517c3638ccd67233a0
MD5 55f53571a8ee73fe2b3aa85a8cf5e330
BLAKE2b-256 abc04a6503c9d22d6d00a5631082ab1484222ecf7d573db791e0f53161bf7745

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cf89e92bf0d4204a6afcc17af27b9271ed9c7e34e17d6f80c085d431ea4a1747
MD5 198b256031db858d3dae439a1fdda93a
BLAKE2b-256 899d885e7491836f3dad368c74f0d5b93551d37b0ec66c9e8753240ee988308f

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp313-cp313-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.0.54-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.15

File hashes

Hashes for sqlalchemy-2.0.54-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 264460333ed0b177cbb1956355d0ee4e0cab83fb415c934ce12a25db2e7be39c
MD5 919a45b927c455a78bb2033d1ebf5084
BLAKE2b-256 4b73e29fa88dfc809857a55e6523911d345d00cab4adf87032c21ade8874223c

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6adf80277372a89910a0f3ccfe960b846d279dc55b366dd5c5ec07f41c84758
MD5 db604e8b40d70d8afd0cff8fcbda1d51
BLAKE2b-256 b1b75fd58f03281a74c57f02f509433e1be58a79d9f5b0e14020e665e0dcb614

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 48611087a75d26d798003645c688c7d3cfc26b89dbe4a2c568d6b378d330deae
MD5 4714506c6d0a34a2c0675cc5acd6ca1c
BLAKE2b-256 4bb1f13a8fe8e8e167d8e65484b91b827897b8a5ca1efd7ba6e87a5f63412fed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cad78d04254967bdbcccbed5e631d88fe4868530946ab0929aa45e9032849518
MD5 96b76a5de4dc64dc11e8d69268d7a877
BLAKE2b-256 8426bd327a1a6be223e438c98ac8faf299307d83797225a81f3b209607a9fd98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 31d5458672a6f72db2c087f4a5098b3c8503ea0254186ff29205d63afa9401a4
MD5 b9a3dbde1529dfba464113cdf4f9f550
BLAKE2b-256 748ff95de908a4af7ac3a6925cdcb837a93274f608925a0fbc786df38811bccf

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b374e3bc91e246a942592a98ba6a23be76fff21358b00546ac8c0ebc0fd0e00b
MD5 67e4e825e66d9acb7603dbbc91712cfc
BLAKE2b-256 aa1c021ccd7a838425f52e67c02edc541e8d53be8a27a103e684e14b18aac17b

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d65f8ca742ef1e1e14bc417ef59dc2ddf207a7b66b30cfdc6152447314e030cf
MD5 fd263d63bb274a584a79e34a3e0894a5
BLAKE2b-256 d9104a0f7113664c2877906db143709c52ddbd28a88e4d51f0b520bc30048ba7

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp312-cp312-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.0.54-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.15

File hashes

Hashes for sqlalchemy-2.0.54-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 32de6deded25e8b9b11d07428d496ff24dfbc882b8e990c177266948cb5f3d9e
MD5 147c783d585f12df8be893c1e0062fae
BLAKE2b-256 d90c69559e3d90d200fbfe9c44aff39a9ff4e506b1a3e9557a203d69df721244

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d31a2bc06a854ee52dd86b455be4df7c750b28817e2d1b884e31fff126c4fd7b
MD5 9faf53f38ff2141880c4f59481a0c96e
BLAKE2b-256 e5dfa24757e3249b1c7c1c5f0317666d16a8ab901ba239819ecef29eb4ed172e

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3de32cc6721eb42c3aad35bcfb244bb7a18f66c00f3582aae6281d6287a339b5
MD5 bb01db2a2636c554bccb6cca146e2460
BLAKE2b-256 66684beab40ae60ac3d679dbbb46bc0d2bb277013264a0bde37ecaf4b6780e98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68d994e9b0d0423a02a20039631fa6fcbb7fa829a992f7605025774940305d19
MD5 ab96bdf0270c991266cb6f22895e653d
BLAKE2b-256 d99334fdc4a4faced77037a6b3ba1db1acd92e9bd12c21e229b327edd1d3e881

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 63cae7210fea9899e0bf35c1f1ae55d3ddd9c6d47cae8b6b43d945afa79dd65b
MD5 078d6118610fc78dde801ef84e40a87d
BLAKE2b-256 a23d5dfbb9528a391186a99986daecc5cbe003f34408dee91db8f5cdcf917040

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ffba7eb2d67c7505e82a0902aa854d8824b74c28a183820d6a8bd3cfd0f812c2
MD5 3b3d5569ba2f46a486b8aac042c3b90f
BLAKE2b-256 c63075504fd1d70458000e85a3e772333dd0fbf80254b0dc4d41c99922e4d112

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1d887fbd5d248e250807bd801e697fc73e3b44866ce5f093dbc90512e75bde25
MD5 13c9c0a0cb44124f20643ae9d046529b
BLAKE2b-256 d64918fe80f64b1f6bcd422e649e40a78031f8624b2fde22ca54e950dfa6e25a

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp311-cp311-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.0.54-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.15

File hashes

Hashes for sqlalchemy-2.0.54-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2f61a70b3b82e2ec7ad6a4f2301422b9ca93ff06917983e41317bcae878bddf6
MD5 3ddd42aa8acdc241f77d19668d4b49a0
BLAKE2b-256 cdbb1d7fe50ace612bf342d3440d8b09544746949120326c3dc487cfc2592fba

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b67749f7da3985a529cefbb1474783cb91ef44371cb9713630bade3de908760d
MD5 bd7ad463abd31890c722b3af15f1e9a5
BLAKE2b-256 9776774906be0d41cc4a14ecfbc015112fb7d0a3f1c3393f2c179d10388f8f0b

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1019abef05a4b5eafc8eae6fb483167fa28a4dbe5f518d577b744f31a5276a37
MD5 86fd931205171d356670c19fd71cb984
BLAKE2b-256 63ff1f0bffb0653b30711e2445a48968eff9412b4e5bf0870f1e72e8a69595ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5800ddea045c2c860ef1d359a07a3066c7c0c426f45e3abc3874e116cb3c6937
MD5 95a32320daf8265f1f59fb14404474e4
BLAKE2b-256 77d5ffd6b59795ebec81d582ad866f71ec7c73d356768e0442c6a07bba61c40c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 92622fbbda1b1fe1632f3402a6e516a93c0e41d9158839c6b3dfb12117f26b72
MD5 95ed554e2565fcffeee3905ac17c1ea0
BLAKE2b-256 9bbb3b6f5f3f51582d63af4c88b1e70da7888e936dee6b86a237b7633fb3f216

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d03084f3352dd92048cb19c71d90f116d076c9c7937e0ebc7752c4685de6d38
MD5 8f89fc909428a4f64f75f879c7ff6828
BLAKE2b-256 76bf7339b18ef05c03335a32f077e450c8040eab0c952c2964e32cd889eafc22

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 03cbf8d9a67da618bd65500a5eb3ddac89caf4c61e99b2f03fa4a1952a0725a9
MD5 fc78563a41d29eb938e69415295a344d
BLAKE2b-256 f5f64247fdd087bf1b39be90930bb2b276a1c55041540628c8736512b4242669

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp310-cp310-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.0.54-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.15

File hashes

Hashes for sqlalchemy-2.0.54-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6b6d4e601c4f6d85e99bb3416107cc9418c5603ca73d4ee0f5f8d79c2a1ed9e8
MD5 8f7d4e438a26b78c8f152d61162e49bf
BLAKE2b-256 a9f18d225d6b77863ae83ba51e913fe5954bcf58b49dd54229f0b5ba0bc983f0

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 762cfe4d340c56368256d936a98b620a9a5650e49c1c84eba51d6edd17ffefb2
MD5 1d2dfd4b98c49f35ca0ec644022bdabf
BLAKE2b-256 f4fe6c96fe018b9db15476b46619228dc0749cdd9b4dc8baab89aca59205b605

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5c09090b1a7c4d389d1431f820931e8df318f82caafc53f9a72c872fef467c5
MD5 eecdd0f8b59526dab931c32c60fba973
BLAKE2b-256 e3d463e800b45bd4fa59cb4b14c013130e0aa92c7a019a0b8bf68115643bf32b

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e7a76d5dce712ce50435d0f97181eb955ec27d138c004176f01282e063bac52
MD5 d5214c190cb7a9c9cafb36c763aba1e6
BLAKE2b-256 c8939d26b109f5472017bf6e7a1b9dac12ac5f6165ba37a297834d0690c42cf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8cc6532f930c27974e9239e5ce5abebe7600ba9807cea4fcf42f1b6cab18fe7
MD5 88faa198a314c6434789eae393fa00b2
BLAKE2b-256 841f80122de187c0f80cb47addce97609160004a8605010afdd815e608fcf003

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24ae093dec196ba37fc2beb0316de53e7871d3d246a50faecbbb53034e41ded2
MD5 c29a58c5f359df8691acc5c44fb62ab4
BLAKE2b-256 d52f7a427d7e10bc5f285d41fa1cadf46031ffc6c84f35a9d6e19737587a4eb0

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: sqlalchemy-2.0.54-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.15

File hashes

Hashes for sqlalchemy-2.0.54-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 744fb219a390561a57dbbd59cd69a22b5b5b2facfde794c1f79236dd847fa67a
MD5 e5a590c3152ebd267e72b9fdd39ea621
BLAKE2b-256 7a1f3bb3d838895d835a425cfe3c0dad057fe6eb0ac756795aa8022b2cae7ce5

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp39-cp39-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.0.54-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.15

File hashes

Hashes for sqlalchemy-2.0.54-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d566099d60cded87d175d4171dc899b9613d2e3b663573364565ca1b27ccd241
MD5 10e4cd09391f88b0368905cdf6ac42a7
BLAKE2b-256 deaca2f45bda3f285c4360294612b9e2ea59b5bfed5a40ef67e6b2b3027aa44f

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 deeab253fe01a770f634c7007c73702df2324c868a79ae756507a9a1a76294fe
MD5 551f1d98c4af845af2423ba643b68180
BLAKE2b-256 724aa1d296577271e077a32ce15692ef41ab8a1717d730303bb4badf4c9d1fcd

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b973e4facc2f80e42f5a27b841feb7e202661881a6320580abbe597a28a007f
MD5 eef1ad461bb3153295286fc12bdba7b8
BLAKE2b-256 67f19f9989916cabc9d574b9e6e2c970a58d6ac20007aacb23ab348919738e53

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 279bde5bfedb0f3e0f1bdbcffa2daa39c6c54d90f9408ef3b1802001597199f0
MD5 7698c98ac233c39fe659822100174049
BLAKE2b-256 ad6ae2e11b062a50f7b73996daf390dfb6abd2e207391e45c5299c216f771614

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 415239eb2ddbbc508ba4cac97affb91c0f210548fd1731edda6e529b0bb93015
MD5 99538f5f934eab414a9594a871ffb3fe
BLAKE2b-256 b1a9e3fe333aa72e676c0e718ff8c7238b9a880e7676d06151820016e0911835

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6c419c83a87fd901f0b1b5338ffcb82471c3ac32a86bb8883688c18f8eb85d3
MD5 5e563b8e1eabed9611c180904605d364
BLAKE2b-256 71ecead615ec0c459be0820aab6c26daee20bb9c549069d8252eb5be5c7279d2

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: sqlalchemy-2.0.54-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.15

File hashes

Hashes for sqlalchemy-2.0.54-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f3ea33bcf0aa599c1511fe5c9fb126f45aa450419084c4823f786155fe4c79f1
MD5 6381ec5c7505cf662fd20a63bcfc58d6
BLAKE2b-256 6ca98532261dcb45bb5fb7b16c12c763f453d290aef015dccb8d6f6a6994772c

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp38-cp38-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.0.54-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.15

File hashes

Hashes for sqlalchemy-2.0.54-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c1a3455a88f66e4851792bedb098ed942912253d31caed1dbc58afbfa9e875cd
MD5 0b31638fdeb1c7147cdf410467b1f097
BLAKE2b-256 5212c96ef076141ebaffdd3eed42dbd347003fb34b0bf56b339e884f782fa624

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7108f410f596c5ac22fe43ba467e864d27c4e1477ae89e90c6c87120b2c1be23
MD5 7421f1e01d553476dbc77f5151f2f0ac
BLAKE2b-256 b1c586c342ef3ec8acac74d83106a57abc7381ec56fa3c59689f63f2e316e872

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34e10af7d274a5c4b7cd0fced5e7361008c5e07d97dd48a93852d5b2f1142a1c
MD5 1baa114195bc73f1cdbbfbce045b0d4c
BLAKE2b-256 969cdc39a89fea6305fb206baddcfef4624f0d7c5a1eb384974441e5f5bf62f9

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4e8a4afcc7d714cc3c8a57facdff4c3529f5f93d71e54b7da1e03e022c9089c9
MD5 a0d1f47eca310a3c71aea176083bac0c
BLAKE2b-256 6fa5aa9ad40b857b8195797d70e79c7492dc2323d91776e2bc6236fd39ded35f

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e1f455db400289f77ba2f7b62fffafe8875153812d0e3777aa4ff2b34a0fc1f7
MD5 0962cb1e0b7b2b58d27d18347b8929e4
BLAKE2b-256 9596243e466fbd0cc53a85ae0db40fd1a845c01160026eb84f256031652b9302

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.54-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.54-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 330d35f9ce815d35cb1daab038d4d7ec0e907f4d7ed0fc8bcb2411d1f23d0b50
MD5 e77c2eb42222aab6425246ccfba97cdc
BLAKE2b-256 7fdb60ba9aba4f924c285878633070a894f3f3c916fa96b46010c39b2049e6ee

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

2.0.54 This release

58 files

2.0.53

52 files

2.0.52

52 files

2.0.51

58 files

2.0.50

58 files

2.0.49

63 files

2.0.48

63 files

2.0.47

63 files

2.0.46

59 files

2.0.45

52 files

2.0.44

57 files

2.0.43

57 files

2.0.42

57 files

2.0.41

57 files

2.0.40

57 files

2.0.39

57 files

2.0.38

57 files

2.0.37

57 files

2.0.36

57 files

2.0.35

49 files

2.0.34

49 files

2.0.33

49 files

2.0.32

49 files

2.0.31

49 files

2.0.30

49 files

2.0.29

49 files

2.0.28

49 files

2.0.27

49 files

2.0.26

49 files

2.0.25

49 files

2.0.24

49 files

2.0.23

49 files

2.0.22

49 files

2.0.21

49 files

2.0.20

41 files

2.0.19

41 files

2.0.18

41 files

2.0.17

41 files

2.0.16

41 files

2.0.15

41 files

2.0.14

41 files

2.0.13

41 files

2.0.12

41 files

2.0.11

41 files

2.0.10

41 files

2.0.9

41 files

2.0.8

41 files

2.0.7

41 files

2.0.6

41 files

2.0.5.post1

41 files

2.0.5

2 files

2.0.4

41 files

2.0.3

41 files

2.0.2

41 files

2.0.1

41 files

2.0.0

41 files

1.4.54

44 files

1.4.53

44 files

1.4.52

46 files

1.4.51

46 files

1.4.50

46 files

1.4.49

48 files

1.4.48

41 files

1.4.47

41 files

1.4.46

41 files

1.4.45

41 files

1.4.44

41 files

1.4.43

41 files

1.4.42

41 files

1.4.41

41 files

1.4.40

36 files

1.4.39

36 files

1.4.38

35 files

1.4.37

36 files

1.4.36

36 files

1.4.35

36 files

1.4.34

36 files

1.4.33

36 files

1.4.32

35 files

1.4.31

36 files

1.4.30

36 files

1.4.29

36 files

1.4.28

35 files

1.4.27

36 files

1.4.26

36 files

1.4.25

30 files

1.4.24

30 files

1.4.23

30 files

1.4.22

30 files

1.4.21

30 files

1.4.20

30 files

1.4.19

30 files

1.4.18

30 files

1.4.17

30 files

1.4.16

30 files

1.4.15

30 files

1.4.14

30 files

1.4.13

34 files

1.4.12

34 files

1.4.11

34 files

1.4.10

34 files

1.4.9

34 files

1.4.8

34 files

1.4.7

34 files

1.4.6

34 files

1.4.5

34 files

1.4.4

34 files

1.4.3

34 files

1.4.2

34 files

1.4.1

34 files

1.4.0

34 files

1.3.24

34 files

1.3.23

38 files

1.3.22

38 files

1.3.21

38 files

1.3.20

38 files

1.3.19

32 files

1.3.18

28 files

1.3.17

28 files

1.3.16

19 files

1.3.15

1 file

1.3.14

1 file

1.3.13

1 file

1.3.12

1 file

1.3.11

1 file

1.3.10

1 file

1.3.9

1 file

1.3.8

1 file

1.3.7

1 file

1.3.6

1 file

1.3.5

1 file

1.3.4

1 file

1.3.3

1 file

1.3.2

1 file

1.3.1

1 file

1.3.0

1 file

1.2.19

1 file

1.2.18

1 file

1.2.17

1 file

1.2.16

1 file

1.2.15

1 file

1.2.14

1 file

1.2.13

1 file

1.2.12

1 file

1.2.11

1 file

1.2.10

1 file

1.2.9

1 file

1.2.8

1 file

1.2.7

1 file

1.2.6

1 file

1.2.5

1 file

1.2.4

1 file

1.2.3

1 file

1.2.2

1 file

1.2.1

1 file

1.2.0

1 file

1.1.18

1 file

1.1.17

1 file

1.1.16

1 file

1.1.15

1 file

1.1.14

1 file

1.1.13

1 file

1.1.12

1 file

1.1.11

1 file

1.1.10

1 file

1.1.9

1 file

1.1.8

1 file

1.1.7

1 file

1.1.6

1 file

1.1.5

1 file

1.1.4

1 file

1.1.3

1 file

1.1.2

1 file

1.1.1

1 file

1.1.0

1 file

1.0.19

1 file

1.0.18

1 file

1.0.17

1 file

1.0.16

1 file

1.0.15

1 file

1.0.14

1 file

1.0.13

1 file

1.0.12

1 file

1.0.11

1 file

1.0.10

1 file

1.0.9

1 file

1.0.8

1 file

1.0.7

1 file

1.0.6

1 file

1.0.5

1 file

1.0.4

1 file

1.0.3

1 file

1.0.2

1 file

1.0.1

1 file

1.0.0

1 file

0.9.10

1 file

0.9.9

1 file

0.9.8

1 file

0.9.7

1 file

0.9.6

1 file

0.9.5

1 file

0.9.4

1 file

0.9.3

1 file

0.9.2

1 file

0.9.1

1 file

0.9.0

1 file

0.8.7

1 file

0.8.6

1 file

0.8.5

1 file

0.8.4

1 file

0.8.3

1 file

0.8.2

1 file

0.8.1

1 file

0.8.0

1 file

0.7.10

1 file

0.7.9

1 file

0.7.8

1 file

0.7.7

1 file

0.7.6

1 file

0.7.5

1 file

0.7.4

1 file

0.7.3

1 file

0.7.2

1 file

0.7.1

1 file

0.7.0

1 file

0.6.9

1 file

0.6.8

1 file

0.6.7

1 file

0.6.6

1 file

0.6.5

1 file

0.6.4

1 file

0.6.3

1 file

0.6.2

1 file

0.6.1

1 file

0.6.0

1 file

0.5.8

1 file

0.5.7

1 file

0.5.6

1 file

0.5.5

1 file

0.5.4

1 file

0.5.3

1 file

0.5.2

1 file

0.5.1

1 file

0.5.0

1 file

0.4.8

1 file

0.4.7

1 file

0.4.6

1 file

0.4.5

1 file

0.4.4

2 files

0.4.3

1 file

0.4.2

1 file

0.4.1

1 file

0.4.0

1 file

0.3.11

1 file

0.3.10

1 file

0.3.9

1 file

0.3.8

1 file

0.3.7

1 file

0.3.6

1 file

0.3.5

1 file

0.3.4

1 file

0.3.3

1 file

0.3.2

1 file

0.3.1

1 file

0.3.0

1 file

0.2.8

1 file

0.2.7

1 file

0.2.6

1 file

0.2.5

1 file

0.2.4

1 file

0.2.3

1 file

0.2.2

1 file

0.2.1

1 file

0.2.0

1 file

0.1.7

1 file

0.1.6

1 file

0.1.5

1 file

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

1 file

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