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.14

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.14
File Size Uploaded
SQLAlchemy-2.0.14.tar.gz 9.3 MB Details

Built distributions (wheels)

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

Total release size: 103.4 MB

Release files / SQLAlchemy-2.0.14.tar.gz

Download URL SQLAlchemy-2.0.14.tar.gz
Size 9.3 MB
Tags Source
SHA-256 checksum
How to use checksums
b3c7201fed64bfd83e90472ca4addce3be5dbaaf0cd427f61b1fb5425d89e714
BLAKE2b-256 checksum
How to use checksums
cd68ea4314828f60365208b45252b2efbae7b7e249ac9b2c9a098a5c42ed01f9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL SQLAlchemy-2.0.14-py3-none-any.whl
Size 1.8 MB
Tags Python 3
SHA-256 checksum
How to use checksums
8e1c6ed1e82c33917d7724ae2fe8e32715cb25b31ed467db2f507b21fd63cdb1
BLAKE2b-256 checksum
How to use checksums
b1b4faef836268a5feef0096a6ba88ffeb838a2dab976e448afc0dd48a827890
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-cp311-cp311-win_amd64.whl
Size 2.0 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
252c49f86312e900591fb795d495a9e1b4199d0a799b55a6a5f46969068895c0
BLAKE2b-256 checksum
How to use checksums
90d55a3b367a061010e4008df0c72534095b40ae92060a9d5e0953e9c4e8da69
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-cp311-cp311-win32.whl
Size 2.0 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
243e580b477f0552424f9f9d281e5b37aa8be03e2261cfe992c60acd16fe218c
BLAKE2b-256 checksum
How to use checksums
9af26a2bba6debc971fe6d9d6f2bb5cff4e264bd2a725d8ca5266f29ac9f78bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-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
465cf63f3a739f876ae0128e1308586f77516b5a574419614757d59682eb2feb
BLAKE2b-256 checksum
How to use checksums
a210ed29fa8c675f44ee4f74fd8cdfa40aa0a8dfa939519b0dce47093b0c0ed1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-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
52169b1452bf6609c1b5fe95fba4d376f6e4551e7d73a5fd9216afbaf61ceed9
BLAKE2b-256 checksum
How to use checksums
30bc84647e784de917c5e541288432996688eb85a1190d0ff2bc6f6ab8f2466d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-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
281f0862483d89f169584f6b69dde1130d70612f4414c6a6167f690c7ac2a871
BLAKE2b-256 checksum
How to use checksums
e0e00cfe474bbb63d9c08fae63be3cf75152254fe1a1d5db1bcccedcf77a4f3a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-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
1ca00a7aca9636675a05b8ef99e09b9a6a680dfc346b5fe04e6ecc957a947501
BLAKE2b-256 checksum
How to use checksums
8df42d020127596b0e36bab1298f311fc16462c9154dccbbd1b8b082c23acb75
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-cp311-cp311-macosx_11_0_arm64.whl
Size 2.0 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
21333b7ce04c3a57a7b17e19cd8a2ebeae4d58e3c97e57b0d6a2c626d7cddd3b
BLAKE2b-256 checksum
How to use checksums
b4010ea8c96606dba461f1549d2cec6666b903f17911ae0b72a041b0992412e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-cp311-cp311-macosx_10_9_x86_64.whl
Size 2.0 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
dabed709bd639e38c6b7f4ffc9a187d251dfc7636b5bc366408f5eadb631a558
BLAKE2b-256 checksum
How to use checksums
b5bddd3750e0deb80f1bf95cd011f0b843a5aee34fe26e1b8d7de1ec08625ca4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-cp310-cp310-win_amd64.whl
Size 2.0 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
bd213137ef398aed36e45c14d49057a3471f7200c07484ea5bbd89a91f488922
BLAKE2b-256 checksum
How to use checksums
cde9812bd3c100e6f6c09dea6ceae6a4e52feef0396b69d876f0291a93f160ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-cp310-cp310-win32.whl
Size 2.0 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
d5c19b4a78126a263ecf01fcc1671344b5514392906cd46b70be74b73e543264
BLAKE2b-256 checksum
How to use checksums
c9b989e1706b6a9f47b8946849dfa3a4797087ef4898cd3072767c64804d857f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-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
e422bec95850df641b05f2bd605d9995e01a66d55fa9fff6c79387dbdd8915af
BLAKE2b-256 checksum
How to use checksums
6a207acc0de919fe79847c9d288ebe86e59270da0e7aaa608cc03ff5800b93a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-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
06f7e29e542c6f2dc751d4e9a8bdee1945226c0d501f8ee008baf5175604fb90
BLAKE2b-256 checksum
How to use checksums
58ab60781ad7f7a47f4aa445190ea374b15976a26fc935fa9191e53ecf746c18
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-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
7f02243efca602601bf5646ee627512b36e64068a3c88212e571b609bc7e128e
BLAKE2b-256 checksum
How to use checksums
d94ebf7766d873383cd55b6dca85f019e26cdb803e732d30eaf74d8be4b44a17
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-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
26025ba87797ac616b4823030adb2832e825ad8cdb4ac688e19ee93be69a42b6
BLAKE2b-256 checksum
How to use checksums
61db35793b4372045e791f9511cf1e43a382a79b46426a3639a3093c49c48bd1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-cp310-cp310-macosx_11_0_arm64.whl
Size 2.0 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
49261a8f4bc0b41050d7719b93f1c93a8e19594aeeb252df93d61232f70c54d4
BLAKE2b-256 checksum
How to use checksums
594529853ed60389abd49065a793154555beefeceb8ba1988c9b5ae1a4c85965
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-cp310-cp310-macosx_10_9_x86_64.whl
Size 2.0 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
f851d8e2aaa0b0d07b89b7338441954e4d16d0eed5d140981e25cb5cfa259b3b
BLAKE2b-256 checksum
How to use checksums
96963f27e62f14ec42df72cb89095ee7636c5e64f6bf22f41dd89cdbdb49c444
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-cp39-cp39-win_amd64.whl
Size 2.0 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
82eb21e6aab4de898b6be89f5426454e4b5eee49792a44da87e602da89bb31dc
BLAKE2b-256 checksum
How to use checksums
074c5fc399170dd7ff7ba1137567b7a25dcfb4e240083eaa793d74504dc5469a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-cp39-cp39-win32.whl
Size 2.0 MB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
d49ce7ac0713c820b5e2d6863ef87c22a8e1c950ce2778c69eb1327fc4b80dd2
BLAKE2b-256 checksum
How to use checksums
139861eb18f4c78f9c9c7a4ca89ae71651f1f2ab0a691f6eefb5e8f263a2656b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-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
f60461645af46e92bea54db9f3175c55bd9bceba02b133b77f700d7d9de57ead
BLAKE2b-256 checksum
How to use checksums
570a41dc774c170805f43ec268d7e5aa6fb8f4f51ae2452a5dbefebfd5636000
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-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
888317fbebefbe87c933551f30864acd26366fad270d9be9dbb2ead32e446d83
BLAKE2b-256 checksum
How to use checksums
8ea135202e648e7819cd9bcf953f14f496072961b495066f2cc59ee91835de66
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.7 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a824b15ef9596133d02364775c47ce173ea379179cc367e61d9d591e95843fdb
BLAKE2b-256 checksum
How to use checksums
f06a00835fe2ef616042df3f3c4da7485c7f2c73fade0206c82c17f24eeace92
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-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
5364901aea8b5562a01d583c186bb5448913a8250f53617b5f592ca51f5c5e8a
BLAKE2b-256 checksum
How to use checksums
4e9537d51ff7bf346304f1be0f462638d2d344b97b5a5033861a38b6be124dd1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-cp39-cp39-macosx_11_0_arm64.whl
Size 2.0 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2c50b9d78362654d193ec03f4e524a1490abe9ac9d1001df60dd1e00d01d3d69
BLAKE2b-256 checksum
How to use checksums
4b4c47dae41e06314068e3fbc8e095a14246f6514fbc69da25924dbeb7139a78
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-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
433467a5c4d0cf5f54f374574fb8a2d12c7f806c9a924307e1b816bd79f9ed3f
BLAKE2b-256 checksum
How to use checksums
94dd2ddcbef7ed9e46e10c9f858bf44a5acb7e26b4b54000d266d1f88f8cd819
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-cp38-cp38-win_amd64.whl
Size 2.0 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
c38bc0abfd93989afceeb79abb05f20ef0d56ebfd5eba5738e207ef50c1efd56
BLAKE2b-256 checksum
How to use checksums
80c85fd73c770355c10b19df6d90787e89fef7353475969429b61334bafb0db4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-cp38-cp38-win32.whl
Size 2.0 MB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
ce24180cf34ecd47a9a91d535b429deec14dc3d0cfa54d04979a3ebc60b1887d
BLAKE2b-256 checksum
How to use checksums
a9460d7befb847d144e199d08dc4d5ff3c47be1e1352451f43a96acb6f9ec698
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-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
ec03e57ab555153195283017d804e0469b95bb012ecb19f6e2f0b22a3e60bdca
BLAKE2b-256 checksum
How to use checksums
3ffa612a0272ca2d0bc53ecbbb82119f4712bd779edcde1c3c0fb52ebca6629e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-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
afed9029db08e16187c7e2dcdfed99e9041499bdc4392589624b05d0a17b8c41
BLAKE2b-256 checksum
How to use checksums
dc38a9d9e228338aa8d0002fd79fe81a643b06deee65eebd48275a2941e80b5e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-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
319184b851c0db141138a0a062fdd86b9eb5be4251a7d760d6465b92dd6c4e1e
BLAKE2b-256 checksum
How to use checksums
f27abbf5810717f54b8e967f5123dfc960bf31ffda337e888c9143356ace084e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-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
e402263eca51ba18f3f8b06314a37b7a458496a65a515f5a25c7895423826a93
BLAKE2b-256 checksum
How to use checksums
dab93c61a2e99dd0c4ee5fec2a9057eb1339b97b54b0eaddee7b3564e0ca0dfa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-cp38-cp38-macosx_11_0_arm64.whl
Size 2.0 MB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
bec31cb4dcd924ff53b3bfdec1b565ccda062f0ebd1a325a247a1550782057de
BLAKE2b-256 checksum
How to use checksums
031b494c948f9a3fa45b1674faaa37c1399e56ea8199637e37d557fa37245f53
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-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
4dceffe226116aa16040ae36529fb1159f12c021d93de8de9f1261753a2ba2aa
BLAKE2b-256 checksum
How to use checksums
8a763303792e0e077d1a80ef5d686a868b318adb0dd2397536a847cd8534e989
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-cp37-cp37m-win_amd64.whl
Size 2.0 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
56b2b4bbfb5bf6c40d84109665a9f0c1c26b6f6280f1749ee5ddf3b82052386a
BLAKE2b-256 checksum
How to use checksums
59efb8e8bde0646d9354c95f1dd8cd34b12f5e5bec9b56fd393efa304f1e5231
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-cp37-cp37m-win32.whl
Size 2.0 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
c1b8ea166cf63964dc11477f905869cc59b404f71a8e90033bd50843150584e0
BLAKE2b-256 checksum
How to use checksums
dfb98fe77ef80232e9324643c226d08924528233c0f9d6d19a2439060a928e91
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-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
7cb74468e646497daa743ab2344f7bb5e9fe97774654fa84879b38f8065ceb29
BLAKE2b-256 checksum
How to use checksums
6bab214db287d0d5bc3509cca87347310052ec3a016d0c0cf6a14d574da9cf9b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-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
cf0b16edbebcd200c93e01cf0031b2af44d6ba374a8f8f7b120bc3db1df99cb7
BLAKE2b-256 checksum
How to use checksums
dce1a1d4da23c0886577037aa2b13d39588bba67030a58cdd5f4173e16e29958
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-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
7e7527a1b16587c9b4660241ab5df334f693381ec47682b54293993aca8acfa9
BLAKE2b-256 checksum
How to use checksums
93245a1308f5e259e3b8b409d703b86efcb33e16dcaeb7f97c8a5bb06669d22c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-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
29935e0f3d91b7a97b9e635f3cf01d88cc7a0ace2e4686ec6cdbdfa04b0a2839
BLAKE2b-256 checksum
How to use checksums
9bb04524bbf2dca2c432669933ef0404707397ccd2f21ff874f1642f5f65b119
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

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

Download URL SQLAlchemy-2.0.14-cp37-cp37m-macosx_10_9_x86_64.whl
Size 2.0 MB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
ac104bb4390fdbf743f0de01cda40740b7da32f62304e89efb4e3300587636c6
BLAKE2b-256 checksum
How to use checksums
8b3943fbbd70f97129097bf74ef9306c9994f853d43d780c0b3dae44a10efe80
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

Release history Release notifications | RSS feed

This release

2.0.14 This release

41 release files

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

2.0.0

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