Skip to main content

Database Abstraction Library

Project description

PyPI PyPI - Python Version PyPI - Downloads

The Python SQL Toolkit and Object Relational Mapper

Introduction

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

Major SQLAlchemy features include:

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

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

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

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

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

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

SQLAlchemy’s philosophy:

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

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

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

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

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

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

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

Documentation

Latest documentation is at:

http://www.sqlalchemy.org/docs/

Installation / Requirements

Full documentation for installation is at Installation.

Getting Help / Development / Bug reporting

Please refer to the SQLAlchemy Community Guide.

Code of Conduct

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

License

SQLAlchemy is distributed under the MIT license.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

SQLAlchemy-1.4.13.tar.gz (7.6 MB view details)

Uploaded Source

Built Distributions

SQLAlchemy-1.4.13-cp39-cp39-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9 Windows x86-64

SQLAlchemy-1.4.13-cp39-cp39-win32.whl (1.5 MB view details)

Uploaded CPython 3.9 Windows x86

SQLAlchemy-1.4.13-cp39-cp39-manylinux2010_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

SQLAlchemy-1.4.13-cp39-cp39-manylinux1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9

SQLAlchemy-1.4.13-cp39-cp39-macosx_10_14_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

SQLAlchemy-1.4.13-cp38-cp38-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

SQLAlchemy-1.4.13-cp38-cp38-win32.whl (1.5 MB view details)

Uploaded CPython 3.8 Windows x86

SQLAlchemy-1.4.13-cp38-cp38-manylinux2010_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

SQLAlchemy-1.4.13-cp38-cp38-manylinux1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8

SQLAlchemy-1.4.13-cp38-cp38-macosx_10_14_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

SQLAlchemy-1.4.13-cp37-cp37m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

SQLAlchemy-1.4.13-cp37-cp37m-win32.whl (1.5 MB view details)

Uploaded CPython 3.7m Windows x86

SQLAlchemy-1.4.13-cp37-cp37m-manylinux2010_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

SQLAlchemy-1.4.13-cp37-cp37m-manylinux1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7m

SQLAlchemy-1.4.13-cp37-cp37m-macosx_10_14_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

SQLAlchemy-1.4.13-cp36-cp36m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.6m Windows x86-64

SQLAlchemy-1.4.13-cp36-cp36m-win32.whl (1.5 MB view details)

Uploaded CPython 3.6m Windows x86

SQLAlchemy-1.4.13-cp36-cp36m-manylinux2010_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

SQLAlchemy-1.4.13-cp36-cp36m-manylinux1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.6m

SQLAlchemy-1.4.13-cp36-cp36m-macosx_10_14_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

SQLAlchemy-1.4.13-cp27-cp27mu-manylinux1_x86_64.whl (1.5 MB view details)

Uploaded CPython 2.7mu

SQLAlchemy-1.4.13-cp27-cp27m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 2.7m Windows x86-64

SQLAlchemy-1.4.13-cp27-cp27m-win32.whl (1.5 MB view details)

Uploaded CPython 2.7m Windows x86

SQLAlchemy-1.4.13-cp27-cp27m-manylinux1_x86_64.whl (1.5 MB view details)

Uploaded CPython 2.7m

SQLAlchemy-1.4.13-cp27-cp27m-macosx_10_14_x86_64.whl (1.5 MB view details)

Uploaded CPython 2.7m macOS 10.14+ x86-64

File details

Details for the file SQLAlchemy-1.4.13.tar.gz.

File metadata

  • Download URL: SQLAlchemy-1.4.13.tar.gz
  • Upload date:
  • Size: 7.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for SQLAlchemy-1.4.13.tar.gz
Algorithm Hash digest
SHA256 1d8a71c2bf21437d6216ba1963507d4d1a37920429eafd09d85387d0d078fa5a
MD5 d7d84bd3e8ba28c56ba78beb0b1f34de
BLAKE2b-256 245fb65c7a8216ee84a2f3a42db8876ee0fa4925529cde4c7f4bb4a60e106e6d

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 384c0ecc845b597eda2519de2f8dd66770e76f8f39e0d21f00dd5affaf293787
MD5 82022913e05d13dc187ba94dc60eabd4
BLAKE2b-256 066ba9590c213eeca19c2769760d2b7964e68196d5388884fd07d5778d9e1ffa

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp39-cp39-win32.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 85bd128ebb3c47615496778fedbe334094cf6133c6933804e237c741fce4f20c
MD5 916f7d05238535c918276c05026922e5
BLAKE2b-256 8a739962daa8d48388c2f6cdff7d61807bae48c41e4c2e1e0d482ab6b2f109b7

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9937cb1061042fb09c4b622884407525a0a595e300ef199d80a7290ca2c71ea
MD5 f032e75919f8164ce548ebbc10d85141
BLAKE2b-256 e6006b5ba54f8629aa15464f5c52f87e881c2ab78f152c661af8d313ffef7f9c

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c2afd9ad52387d32b2a856b19352d605213a06b4684a3b469ff8f39a27fb3a2
MD5 14104ba765abbe37f483c1a710200597
BLAKE2b-256 0d0f15aa765d123dfd263f9ce685c6f1767dae2a77f3bec2b42d0c591a62e2b7

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6d01d83d290db9e27ea02183e56ba548a48143b3b1b7977d07cedafc3606f91d
MD5 8246bbfff5426e8f4161dadd80ee9d25
BLAKE2b-256 3d3ac61502cee995a2617d12a6a0090c8227c7303b36bfdd5aca81f8119177ca

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 08a00a955c5cb1d3a610f9735e0e9ca64f2fd2540c942ab84dc9a71433940f86
MD5 bc3cb9fc02e224bbf9ffbef874041f5c
BLAKE2b-256 dda0675fa77b58d5a1389beee83a15b239af618e1dc045bf13a9fe1e3da3aedd

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 36bcf7530ca070e89f29e2f6e05c5566c9ab3a2e493608437a230253ecf112a7
MD5 11e7463a8900e5f6f5669ecfae7c7c7b
BLAKE2b-256 010c0894ecf6bb44de52c27a4b26e97663d3b3da58fd8a816d2d1eecf5edb1f7

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6f0bd9b2cf1c555c6bfbb71d58750d096f7462a582abf6994cff80fbfe0d8c94
MD5 69c68286dd98f8550c2c594115efa309
BLAKE2b-256 49580e882e5b459d2ec4885d34d8bf46c4733dac5cbe3cc47c3d2f4ae5b0806b

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp38-cp38-win32.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1b2b0199153a4ecbb57ec09ff8a3693dcb2c134fef217379e2761f27bccf3a14
MD5 cf37658ad2fb01f87625308def92795a
BLAKE2b-256 bfbaa0cffc06bbecda92f6ab6a42640758d10566031f4fdfbabe7667e31b7dfe

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a00c3494a1553e171c77505653cca22f5fadf09a0af4a020243f1baaad412b3
MD5 dd57b070da9ea74c722040c17549b86f
BLAKE2b-256 41bc82662b6581545fbcd594c639856570ca23689bcb4160214abc51e4d9aa26

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8162f379edc3c1c0c4ac7436b3a8baa8ca7754913ed81002f631bc066486803e
MD5 04651a552a63a5f0d5b785b82dd5012a
BLAKE2b-256 48c99e8fdaa391b801d724076f1292aa716fc63a406f13acbc85a46da9e4b765

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5e7e9a7092aea03c68318d390f39dab75422143354543244b6e1b2b31848a494
MD5 0ae98f3afa32ee4facac8ce0253dc8b8
BLAKE2b-256 013cd36da66c76f13abeb8af66bef9adeba78ddcfb956302ff4116a55c8b8d6f

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8dd79b534516b9b792dbb319324962d02c69a50a390cb2387e360bebe5d7b280
MD5 60a3b82db7bd5e352186fbede44deee3
BLAKE2b-256 534b8100d577d8e1b6856ce1fef6c3f2ccfc71fcbcc4181271ad18db57470c76

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a35d909327a1c3bc407689179101af93de34bc6af8c6f07d5d29e4eaab54a9f4
MD5 c033486a70b2292f8a1e9fd4b670302b
BLAKE2b-256 d813567f2cce19c1695dbad1e6f19bf863258595e80847b70516c7f850dd304c

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e21ca6ecf2a48a53856562af3380f2a64a1ce08ae2d17c800095f4685ab499b1
MD5 88ae89e04a5f4bd6b9237ad6a26dbd72
BLAKE2b-256 25f90ece500846492871fde9b7225d51ed7a1cb86502605bd072331cffee11c8

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp37-cp37m-win32.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 74cd7afd1789eabe42c838747c5680d78317aee448a22de75638ac0735ae3284
MD5 1ad14ed9dd4d27b30b287ea1d030c7b8
BLAKE2b-256 0ba3640e07444142da31640f982500175f46cfe68343f0c9632d4f5b0f0b776d

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46737cd87a57e03ab20e79d29ad931b842e7b3226a169ae9b36babe69d92256f
MD5 310ce31a513363f848df0e0c411742d0
BLAKE2b-256 5c9aa343fec86d4eac510eadd7d0fe50d49df253b9ad86fa14f01d5af2f32be0

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed96e1f28708c5a00fb371971d6634210afdcabb439dd488d41e1cfc2c906459
MD5 adaf110f59251d4244d5058766ad84e2
BLAKE2b-256 9d4185174b9cbd7c7fa688572c8401ca29e3c70c42efe3b415d8edab05856280

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 938e819bc74c95466c7f6d5dc7e2d08142c116c380992aa36d60e64e7a62ffe7
MD5 eae54d9486cda90e04129c142c96b3be
BLAKE2b-256 74547e8c7a4b5207853c970986c87985e808b090b8e6623a86e0fea2ace64445

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 50dba4adb0f7cafb5c05e3e9734b7d84f0b009daf17ca5a3c1560be7dbcaaba7
MD5 7363365f47616b6d173fbb7f4118c988
BLAKE2b-256 c3360538cfae7d0141b3ef061093e245e89e42fb02d641cad1aaa98bd56048e4

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a63848afe8f909d1dcea286c3856c1cc1de6e8908e9ce1bdb672c9f19b2d2aa7
MD5 a6790df6e4988f5135f33bcf3c742261
BLAKE2b-256 85f03cc14053c4c3ae868d19cd08f8756c4701b968e6b6627ab3029eff2675e4

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4b9e7764638910c43eea6e6e367395dce3d1c6acc17f8550e66cd913725491d2
MD5 f3736f86e7e504bfdd862aaf844d0138
BLAKE2b-256 dab6cabc057944631fec9faeb108dd614ed2158249cdb3ea668567fd7d1bbd27

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp36-cp36m-win32.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 6adf973e7e27bce34c6bb14f62368b99e53a55226836ac93ff1352fe467dc966
MD5 77040f8a8fc3bfe26bc2719292b5efee
BLAKE2b-256 565182b5768a13e5437398e9012b926bc8da07f713529ecb16718dc9997c0bee

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98270f1c52dc4a62279aee7c0a134e84182372e4b3c7ee35cafd906c11f4e218
MD5 d5057cacb0fb28ab3410765fa7efa6ce
BLAKE2b-256 effb9173c9d84562d3f31b7210c264b343a23982abca64316c7aff7ce7b23e30

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 586eb3698e616fe044472e7a249d24a5b05dc5c714dc0b9744417031988df3af
MD5 9e61e973fe0823c81248035429eca562
BLAKE2b-256 424e6a0a3a337764fa80c18c4cf1c1e7f32f415719234339da589bbf264f8da2

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 58bee8384a7e32846e560da0ad595cf0dd5046b286aafa8d000312c5db8899bf
MD5 62de4831d990e963bf6cf45b780ac33f
BLAKE2b-256 ed38390b8eb3c95f6d8ace7a32dc4b9edf43eff4cb3964b95aeb00e453a0bd8d

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e288a3640c3c9311bb223c13e6ecb2ae4c5fb018756b5fbf82b9a1f13c6c6111
MD5 3acf45e84f837eb259c2f684b435909c
BLAKE2b-256 370c5b770cae10b7568ef5029ec5ee58a2196bcc9dfb53a09c2ac4ffdb43ba67

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b53a0faf32cde49eb04ad81f8ff60cfa1dcc024aa6a6bb8b545621339395e640
MD5 f429db6457bfd2c71fdd31b7fc7d4af1
BLAKE2b-256 e514b06b7ff6199e840ae368765e77303876871cef31ed0ca1012b30387f268e

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 79286d63e5f92340357bc2a0801637b2accc95d7e0044768c3eea5e8271cc300
MD5 9d5bdc785e4ee31310e15fd461c5fa8f
BLAKE2b-256 33ce73e011f315cf272b6542c5cd4e379dbc06d24e126ddbb501c89974c7247e

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 e25d48233f5501b41c7d561cfd9ec9c89a891643aaf282750c129d627cc5a547
MD5 af83c6597d5783faf46a64e8431fd68d
BLAKE2b-256 0534764940a5e24d842ab3fa7f1e7175dc520a5417317cd33b59104fe692978d

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp27-cp27m-win32.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 b12b39ded8cee6c4fdd0b8aa5afdb8cb5641098f2625acc9175effdc064b5c9f
MD5 3a146fd9e93d28347912227ae596c735
BLAKE2b-256 75c4de3fa9873de1eada3e50741ca237449daaf6af6a77d82b23162fc8cfc0af

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 49fc18facca9ecb29308e486de53e7d9ab7d7b02d6705158fa34af0c1a6c3b0b
MD5 82e4db1f1300a38c3cd3f34a74e367d8
BLAKE2b-256 ca8dfbfdf901b3ce125daecb94977668af61c1ef3fd3f4016be2e0f75394cd09

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.13-cp27-cp27m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.13-cp27-cp27m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for SQLAlchemy-1.4.13-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 375cde7038d3c4493e2e61273ed2a3be04b5845e9bea5c662543c22935fb439b
MD5 476ecd981d9dcbf3e6dfc617f64c418a
BLAKE2b-256 fe1916bed5aaca0b489ff6fba8ded21cf4a85b904e36e4e6d7cb4b4b818139ca

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page