Skip to main content

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.

Release files for SQLAlchemy 2.0.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for SQLAlchemy 2.0.0
File Size Uploaded
SQLAlchemy-2.0.0.tar.gz 9.2 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for SQLAlchemy 2.0.0
File
SQLAlchemy-2.0.0-py3-none-any.whl Python 3 none any Details
SQLAlchemy-2.0.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
SQLAlchemy-2.0.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
SQLAlchemy-2.0.0-cp311-cp311-musllinux_1_1_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-64 Details
SQLAlchemy-2.0.0-cp311-cp311-musllinux_1_1_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ ARM64 Details
SQLAlchemy-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
SQLAlchemy-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
SQLAlchemy-2.0.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
SQLAlchemy-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
SQLAlchemy-2.0.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
SQLAlchemy-2.0.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
SQLAlchemy-2.0.0-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
SQLAlchemy-2.0.0-cp310-cp310-musllinux_1_1_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ ARM64 Details
SQLAlchemy-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
SQLAlchemy-2.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
SQLAlchemy-2.0.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
SQLAlchemy-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
SQLAlchemy-2.0.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
SQLAlchemy-2.0.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
SQLAlchemy-2.0.0-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
SQLAlchemy-2.0.0-cp39-cp39-musllinux_1_1_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ ARM64 Details
SQLAlchemy-2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
SQLAlchemy-2.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
SQLAlchemy-2.0.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
SQLAlchemy-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
SQLAlchemy-2.0.0-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
SQLAlchemy-2.0.0-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
SQLAlchemy-2.0.0-cp38-cp38-musllinux_1_1_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-64 Details
SQLAlchemy-2.0.0-cp38-cp38-musllinux_1_1_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ ARM64 Details
SQLAlchemy-2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
SQLAlchemy-2.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
SQLAlchemy-2.0.0-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
SQLAlchemy-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
SQLAlchemy-2.0.0-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
SQLAlchemy-2.0.0-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
SQLAlchemy-2.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64 Details
SQLAlchemy-2.0.0-cp37-cp37m-musllinux_1_1_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64 Details
SQLAlchemy-2.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
SQLAlchemy-2.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
SQLAlchemy-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details

Total release size: 102.6 MB

Release files / SQLAlchemy-2.0.0.tar.gz

Download URL SQLAlchemy-2.0.0.tar.gz
Size 9.2 MB
Tags Source
SHA-256 checksum
How to use checksums
92388d03220eda6d744277a4d2cbcbb557509c7f7582215f61f8a04ec264be59
BLAKE2b-256 checksum
How to use checksums
5455a475df74f583b4ceeefd5a121fd28045af54efe204863de1e3b154385674
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / SQLAlchemy-2.0.0-py3-none-any.whl

Download URL SQLAlchemy-2.0.0-py3-none-any.whl
Size 1.8 MB
Tags Python 3
SHA-256 checksum
How to use checksums
192210daec1062e93fcc732de0c602c4b58097257c56874baa6e491849e82ceb
BLAKE2b-256 checksum
How to use checksums
00c94fab29c5efaf72df0ad9b46f783197f35b66ddaad62db26c69befb504830
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp311-cp311-win_amd64.whl

Download URL SQLAlchemy-2.0.0-cp311-cp311-win_amd64.whl
Size 1.9 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
92b828f195bb967f85bda508bed5b4fe24b4ef0cac9ac2d9e403584ba504a304
BLAKE2b-256 checksum
How to use checksums
de1cfb2db5e661464534d1d938953e83a36a072c2c3af7b986592bcae847beab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp311-cp311-win32.whl

Download URL SQLAlchemy-2.0.0-cp311-cp311-win32.whl
Size 1.9 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
c658c985830d4d80598387b2eca5944507acc9d52af8ec867d4c9fa0d4e27fd7
BLAKE2b-256 checksum
How to use checksums
9dd9f903a20e6e66202516777f281ff07fc0400125bc174246423edb8d959f5c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp311-cp311-musllinux_1_1_x86_64.whl

Download URL SQLAlchemy-2.0.0-cp311-cp311-musllinux_1_1_x86_64.whl
Size 2.8 MB
Tags CPython 3.11 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
7a2709d68ec901add77aa378253568905ba8112ae82ae8b3d3e85fd56b06f44d
BLAKE2b-256 checksum
How to use checksums
0b39a9f9371ae3823bda5cab13fbc805391f7154adf117d387efadf6f68ac398
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp311-cp311-musllinux_1_1_aarch64.whl

Download URL SQLAlchemy-2.0.0-cp311-cp311-musllinux_1_1_aarch64.whl
Size 2.8 MB
Tags CPython 3.11 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
3758f3e12dd7a1448d8d2c5d4d36dc32a504a0ff6dded23b06d955c73f1b71b4
BLAKE2b-256 checksum
How to use checksums
14f12a848edaef2361742dfffa977061a861547e78ec0e1db1fc4c22fe7bdef4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL SQLAlchemy-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.8 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ef0794ed9ed2cc3c42475998baf3ead135ce3849e72993fd61c82722a1def8a5
BLAKE2b-256 checksum
How to use checksums
0db37cb5fc3b48f31b3b23a0d369ec2d02a5914e02419b93e1147116d71264c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL SQLAlchemy-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.8 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
176ddfce8d720f90ffccfecfe66f41b1af8906bb74acc536068d067bdb0fd080
BLAKE2b-256 checksum
How to use checksums
a849b5db3773f3643e5dc0b7da7e854c4015df195a5eb640a6aaa8f1ef9609ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL SQLAlchemy-2.0.0-cp311-cp311-macosx_11_0_arm64.whl
Size 1.9 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b850d709cddfe0fa03f0ce7d58389947813053a3cfd5c7cc2fa5a49b77b7f7b5
BLAKE2b-256 checksum
How to use checksums
73a51ada12a89370fa34c4244527afd5a5671357cf6b45e613d2dd447042b27f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl

Download URL SQLAlchemy-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 1.9 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
a0b4047d7d9405005637fbfd70122746c78f2dada934067bfdd439bc934cb5fb
BLAKE2b-256 checksum
How to use checksums
72d33dfceccf991b45ebc32ff088f003948037e4caa69ac0ae8c808f7fb26299
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp310-cp310-win_amd64.whl

Download URL SQLAlchemy-2.0.0-cp310-cp310-win_amd64.whl
Size 1.9 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
6e6cb16419328100fc92ee676bcb09846034586461aeb96c89a072feb48c9a6d
BLAKE2b-256 checksum
How to use checksums
cfd77849486c094a368cc7b158abdb9e07f842e7479640f6c4391402745be653
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp310-cp310-win32.whl

Download URL SQLAlchemy-2.0.0-cp310-cp310-win32.whl
Size 1.9 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
86bc43f80b3fdae55f2dc6a3b0a9fe6f5c69001763e4095998e467b068a037d2
BLAKE2b-256 checksum
How to use checksums
91f66aeceeaab65341ca1f87ddde45930980a759bdc2e54ce770ae88d77333b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp310-cp310-musllinux_1_1_x86_64.whl

Download URL SQLAlchemy-2.0.0-cp310-cp310-musllinux_1_1_x86_64.whl
Size 2.7 MB
Tags CPython 3.10 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
20ef6ed15ecc17036523157e1f9900f0fa9163c29ce793d441b0bdd337057354
BLAKE2b-256 checksum
How to use checksums
79b6b390905ee39990d8ad6060e9fe5c8c1ed1034a2a05ac3f0022fc1cd6c6b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp310-cp310-musllinux_1_1_aarch64.whl

Download URL SQLAlchemy-2.0.0-cp310-cp310-musllinux_1_1_aarch64.whl
Size 2.7 MB
Tags CPython 3.10 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
492dfab60c3df7105c97474a08408f15a506966340643eeaf40f59daa08a516e
BLAKE2b-256 checksum
How to use checksums
71b8daebf72e5165b2820c1cbe8d80e2a512cce42900aa91ef28d6af81be9d57
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL SQLAlchemy-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.7 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f0bc643a0228179bfcbc8df81c8d197b843e48d97073f41f90ada8f6aad1614d
BLAKE2b-256 checksum
How to use checksums
adc1844e33521eb0fca42a897bcf03580053152ea6510efa8febe04fab7570b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL SQLAlchemy-2.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.7 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
e052ae0c2a887472a74405e3afa5aa5c75cddc8a98a49bbf4a84a09dbc1cb896
BLAKE2b-256 checksum
How to use checksums
7e28112b6197eb97c4476916463de1022ff4a0e8c8ffdfd861cf60c4af35419c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL SQLAlchemy-2.0.0-cp310-cp310-macosx_11_0_arm64.whl
Size 1.9 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
419228c073060face5e35388ddf00229f1be3664c91143f6e6897d67254589f7
BLAKE2b-256 checksum
How to use checksums
647a9ccf1c89c5b657c592e4e7d8ef15dcbb8b76c96edf989f0d01cebb66a041
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl

Download URL SQLAlchemy-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Size 1.9 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
807d4f83dcf0b7fd60b7af5f677e3d20151083c3454304813e450f6f6e4b4a5c
BLAKE2b-256 checksum
How to use checksums
f1abdb1936ee46c2de59696939addfa6e59f65cc3e0de7363eab968c596c61a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp39-cp39-win_amd64.whl

Download URL SQLAlchemy-2.0.0-cp39-cp39-win_amd64.whl
Size 1.9 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
13929b9806b002e3018a2f4d6666466298f43043c53b037a27520d8e8dad238d
BLAKE2b-256 checksum
How to use checksums
0b1aebb65586a6b8fc76142eb426849e0fd6b7d6ffc9e1015330d3b828bf3eb7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp39-cp39-win32.whl

Download URL SQLAlchemy-2.0.0-cp39-cp39-win32.whl
Size 1.9 MB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
47348dad936e0899e2910853df1af736a84b3bddbd5dfe6471a5a39e00b32f06
BLAKE2b-256 checksum
How to use checksums
f92c2cbf3c3849e9eaa15a4ea08320aae1378ca839da94642f63039855d95dbb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp39-cp39-musllinux_1_1_x86_64.whl

Download URL SQLAlchemy-2.0.0-cp39-cp39-musllinux_1_1_x86_64.whl
Size 2.8 MB
Tags CPython 3.9 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
606f55614af6777261e54cb5d541a5c555539c5abc5e0b40d299c9a3bd06fae5
BLAKE2b-256 checksum
How to use checksums
92ea808db76eb040e558a5b000143214a21fc5f3a09e8e03453cfe9b1b3b19cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp39-cp39-musllinux_1_1_aarch64.whl

Download URL SQLAlchemy-2.0.0-cp39-cp39-musllinux_1_1_aarch64.whl
Size 2.8 MB
Tags CPython 3.9 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
7809546951b4a5ad1f0b5d5c87b42218af8c0574f50e89d141dfff531c069389
BLAKE2b-256 checksum
How to use checksums
52e475f3dec7bcadd23f095b02de99bd4ea3798ac1153ac4a5f05681abf0349c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL SQLAlchemy-2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.8 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1b17bc162c317973d87613eac869cc50c1fef7a8b9d657b7d7f764ab5d9fee72
BLAKE2b-256 checksum
How to use checksums
180964ef2927615654cd98b05315a443f516f851342afeac5ae817cfb3c0920a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL SQLAlchemy-2.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.8 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
2dc81c03d4bccc82c81e4e21da5cea2071eca2fcddb248b462b151911c4b47b8
BLAKE2b-256 checksum
How to use checksums
1d1df0adb3dc2bf734b966e212bda7ccbe521df1b9c320c97ba03b9c514182bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL SQLAlchemy-2.0.0-cp39-cp39-macosx_11_0_arm64.whl
Size 1.9 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
77666361fdd70868a414762d0eead141183caf1e0cb6735484c0cad6d41ac869
BLAKE2b-256 checksum
How to use checksums
74552c1dfa43c7e421ed8cbcd3ded244ae42c9bfd33b0f806218f36d1df0ff4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl

Download URL SQLAlchemy-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Size 2.0 MB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
0fb3b58ba21898b94255e86da5e3bfc15cf99e039babcaccaa2ce10b6322929e
BLAKE2b-256 checksum
How to use checksums
1123de68f34b73efa197b0e7a943aa93f2a6504a0492a72ac6dc699dc984d1d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp38-cp38-win_amd64.whl

Download URL SQLAlchemy-2.0.0-cp38-cp38-win_amd64.whl
Size 1.9 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
2051899b520a4332da0fe7098d155e0981044aed91567623c7aff4bd4addddc8
BLAKE2b-256 checksum
How to use checksums
2f70a9689b3eb20f704fcf9608fa71d3a36445e7704fb0844da79b57387a293d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp38-cp38-win32.whl

Download URL SQLAlchemy-2.0.0-cp38-cp38-win32.whl
Size 1.9 MB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
28f8371e07c66f7bd8d665c0532e68986e1616f0505bef05a9bcb384889f94f2
BLAKE2b-256 checksum
How to use checksums
316a520a6469d61c6b21a29f7feeb9f7023c4ee983c22a7142772dd0f6a14ae4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp38-cp38-musllinux_1_1_x86_64.whl

Download URL SQLAlchemy-2.0.0-cp38-cp38-musllinux_1_1_x86_64.whl
Size 2.8 MB
Tags CPython 3.8 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
6c75b77de2fd99bd19a609c00e870325574000c441f7bdb0cd33d15961ed93bc
BLAKE2b-256 checksum
How to use checksums
7351d86ad02768ee26932ab6017d93f273b05c158dbde6b1ce2c21fb1ff54cbd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp38-cp38-musllinux_1_1_aarch64.whl

Download URL SQLAlchemy-2.0.0-cp38-cp38-musllinux_1_1_aarch64.whl
Size 2.8 MB
Tags CPython 3.8 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
54fa0308430ea13239557b6b38a41988ab9d0356420879b2e8b976f58c8b8229
BLAKE2b-256 checksum
How to use checksums
5b38d6887548d1d2626cc756430bacb4016249442bdd4898d1f181f7e2fef35f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL SQLAlchemy-2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.8 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c6e4a17bbcb882fcff597d6ffdf113144383ea346bcae97079b96faaf7d460fb
BLAKE2b-256 checksum
How to use checksums
223781a9e5be2aabcf7eeb63634d2afa14339e9abf4edcaee927d33bc372c377
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL SQLAlchemy-2.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.8 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
33a05cc9533a580f94a69852c8dea26d7dec0bc8182bb8d68180a5103c0b0add
BLAKE2b-256 checksum
How to use checksums
ae734b76cacc21143ec3678747d2738d073bfd4ec4d399081fead8fa888c4dcd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp38-cp38-macosx_11_0_arm64.whl

Download URL SQLAlchemy-2.0.0-cp38-cp38-macosx_11_0_arm64.whl
Size 1.9 MB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
05923707b416b7034c0b14e59e14614cb1432647188ba46bcfd911998cdea48d
BLAKE2b-256 checksum
How to use checksums
299ccbe31b50fe0a21c32d182d1e2ddeb7787a1dbb9693aac6062dd915107ebe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl

Download URL SQLAlchemy-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Size 2.0 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
7c6934dfa9ab53853b1d31723ea2b8ea494de73ad3f36ea42f5859b74cb3afc3
BLAKE2b-256 checksum
How to use checksums
8fe96822c15d63ce8ede75e9ff6b1254f7fbfab5fa644daed24d7b2ca4089310
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp37-cp37m-win_amd64.whl

Download URL SQLAlchemy-2.0.0-cp37-cp37m-win_amd64.whl
Size 1.9 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
83db15a39539c6acb92075215aa68b9757085717d222ef678b0040cdf192adbb
BLAKE2b-256 checksum
How to use checksums
8fb920574d47d02cdfac66284d9d1a23f3af0d6ef946dcd20c38cf6f7749129a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp37-cp37m-win32.whl

Download URL SQLAlchemy-2.0.0-cp37-cp37m-win32.whl
Size 1.9 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
c1cae76f84755527c269ceb49e3a79ff370101bfd93d3f9d298bd7951e1b5e41
BLAKE2b-256 checksum
How to use checksums
8b35cb5510a44a73a1da5c588e28d8b3e040b07ed56e69fc46a3ce1b77414530
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl

Download URL SQLAlchemy-2.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Size 2.7 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
a0f6d402a12ce2dc9243553ae8088459e94540b2afc4b4c3fc3a0272b9aa2827
BLAKE2b-256 checksum
How to use checksums
971355592db022211a56d34afc5f9d67b00a279626df0f15fa13bfc02c77b1b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp37-cp37m-musllinux_1_1_aarch64.whl

Download URL SQLAlchemy-2.0.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Size 2.7 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
d1b1004e00023b37cc2385da670db28cb3dd96b9f01aafc3f9c437c030bf73f8
BLAKE2b-256 checksum
How to use checksums
75a3e382030a0f785c7310f613cd9867d594aff6f0653dc1103e9e43218cef08
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL SQLAlchemy-2.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.7 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1b4428bf59a5f12549f92f4274c8b2667313f105e36a7822c47727ea5572e0f7
BLAKE2b-256 checksum
How to use checksums
a2762db3a6ace4a2ff61528910d6b34dbc35c1c36829f788d1d0b44404339986
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL SQLAlchemy-2.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.7 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
228851937becdbaeefdc937a3b43e9711b0a094eccc745f00b993ecd860a913b
BLAKE2b-256 checksum
How to use checksums
cd273090eaaf13d4a989198126561e0c13e290ebaa32c357ec22a43d0f5d4541
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release files / SQLAlchemy-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL SQLAlchemy-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
Size 1.9 MB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
7b2231470060cd55b870806fb654f2ba66f7fc822f56fe594fa1fbd95e646da5
BLAKE2b-256 checksum
How to use checksums
fe1effdb3553745ed7302554eea0e9c500c79454cf80f9786c868fa246178e42
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.9

Release history Release notifications | RSS feed

2.0.8

41 release files

2.0.7

41 release files

2.0.6

41 release files

2.0.5

2 release files

2.0.4

41 release files

2.0.3

41 release files

This release

2.0.0 This release

41 release files

1.4.9

34 release files

1.4.8

34 release files

1.4.4

34 release files

1.4.3

34 release files

1.4.2

34 release files

1.4.1

34 release files

1.4.0

34 release files

1.3.15

1 release file

1.3.14

1 release file

1.3.13

1 release file

1.3.12

1 release file

1.3.11

1 release file

1.3.10

1 release file

1.3.9

1 release file

1.3.8

1 release file

1.3.7

1 release file

1.3.6

1 release file

1.3.5

1 release file

1.3.4

1 release file

1.3.3

1 release file

1.3.2

1 release file

1.3.1

1 release file

1.3.0

1 release file

1.2.19

1 release file

1.2.18

1 release file

1.2.17

1 release file

1.2.16

1 release file

1.2.15

1 release file

1.2.14

1 release file

1.2.13

1 release file

1.2.12

1 release file

1.2.11

1 release file

1.2.10

1 release file

1.2.9

1 release file

1.2.8

1 release file

1.2.7

1 release file

1.2.6

1 release file

1.2.5

1 release file

1.2.4

1 release file

1.2.3

1 release file

1.2.2

1 release file

1.2.1

1 release file

1.2.0

1 release file

1.1.18

1 release file

1.1.17

1 release file

1.1.16

1 release file

1.1.15

1 release file

1.1.14

1 release file

1.1.13

1 release file

1.1.12

1 release file

1.1.11

1 release file

1.1.10

1 release file

1.1.9

1 release file

1.1.8

1 release file

1.1.7

1 release file

1.1.6

1 release file

1.1.5

1 release file

1.1.4

1 release file

1.1.3

1 release file

1.1.2

1 release file

1.1.1

1 release file

1.1.0

1 release file

1.0.19

1 release file

1.0.18

1 release file

1.0.17

1 release file

1.0.16

1 release file

1.0.15

1 release file

1.0.14

1 release file

1.0.13

1 release file

1.0.12

1 release file

1.0.11

1 release file

1.0.10

1 release file

1.0.9

1 release file

1.0.8

1 release file

1.0.7

1 release file

1.0.6

1 release file

1.0.5

1 release file

1.0.4

1 release file

1.0.3

1 release file

1.0.2

1 release file

1.0.1

1 release file

1.0.0

1 release file

0.9.10

1 release file

0.9.9

1 release file

0.9.8

1 release file

0.9.7

1 release file

0.9.6

1 release file

0.9.5

1 release file

0.9.4

1 release file

0.9.3

1 release file

0.9.2

1 release file

0.9.1

1 release file

0.9.0

1 release file

0.8.7

1 release file

0.8.6

1 release file

0.8.5

1 release file

0.8.4

1 release file

0.8.3

1 release file

0.8.2

1 release file

0.8.1

1 release file

0.8.0

1 release file

0.7.10

1 release file

0.7.9

1 release file

0.7.8

1 release file

0.7.7

1 release file

0.7.6

1 release file

0.7.5

1 release file

0.7.4

1 release file

0.7.3

1 release file

0.7.2

1 release file

0.7.1

1 release file

0.7.0

1 release file

0.6.9

1 release file

0.6.8

1 release file

0.6.7

1 release file

0.6.6

1 release file

0.6.5

1 release file

0.6.4

1 release file

0.6.3

1 release file

0.6.2

1 release file

0.6.1

1 release file

0.6.0

1 release file

0.5.8

1 release file

0.5.7

1 release file

0.5.6

1 release file

0.5.5

1 release file

0.5.4

1 release file

0.5.3

1 release file

0.5.2

1 release file

0.5.1

1 release file

0.5.0

1 release file

0.4.8

1 release file

0.4.7

1 release file

0.4.6

1 release file

0.4.5

1 release file

0.4.4

2 release files

0.4.3

1 release file

0.4.2

1 release file

0.4.1

1 release file

0.4.0

1 release file

0.3.11

1 release file

0.3.10

1 release file

0.3.9

1 release file

0.3.8

1 release file

0.3.7

1 release file

0.3.6

1 release file

0.3.5

1 release file

0.3.4

1 release file

0.3.3

1 release file

0.3.2

1 release file

0.3.1

1 release file

0.3.0

1 release file

0.2.8

1 release file

0.2.7

1 release file

0.2.6

1 release file

0.2.5

1 release file

0.2.4

1 release file

0.2.3

1 release file

0.2.2

1 release file

0.2.1

1 release file

0.2.0

1 release file

0.1.7

1 release file

0.1.6

1 release file

0.1.5

1 release file

0.1.4

2 release files

0.1.3

2 release files

0.1.2

2 release files

0.1.1

2 release files

0.1.0

1 release 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