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.3.24.tar.gz (6.4 MB view details)

Uploaded Source

Built Distributions

SQLAlchemy-1.3.24-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9 Windows x86-64

SQLAlchemy-1.3.24-cp39-cp39-win32.whl (1.2 MB view details)

Uploaded CPython 3.9 Windows x86

SQLAlchemy-1.3.24-cp39-cp39-manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

SQLAlchemy-1.3.24-cp39-cp39-manylinux1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9

SQLAlchemy-1.3.24-cp39-cp39-macosx_10_14_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

SQLAlchemy-1.3.24-cp38-cp38-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.8 Windows x86-64

SQLAlchemy-1.3.24-cp38-cp38-win32.whl (1.2 MB view details)

Uploaded CPython 3.8 Windows x86

SQLAlchemy-1.3.24-cp38-cp38-manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

SQLAlchemy-1.3.24-cp38-cp38-manylinux1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8

SQLAlchemy-1.3.24-cp38-cp38-macosx_10_14_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

SQLAlchemy-1.3.24-cp37-cp37m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.7m Windows x86-64

SQLAlchemy-1.3.24-cp37-cp37m-win32.whl (1.2 MB view details)

Uploaded CPython 3.7m Windows x86

SQLAlchemy-1.3.24-cp37-cp37m-manylinux2010_x86_64.whl (1.3 MB view details)

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

SQLAlchemy-1.3.24-cp37-cp37m-manylinux1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m

SQLAlchemy-1.3.24-cp37-cp37m-macosx_10_14_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

SQLAlchemy-1.3.24-cp36-cp36m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.6m Windows x86-64

SQLAlchemy-1.3.24-cp36-cp36m-win32.whl (1.2 MB view details)

Uploaded CPython 3.6m Windows x86

SQLAlchemy-1.3.24-cp36-cp36m-manylinux2010_x86_64.whl (1.3 MB view details)

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

SQLAlchemy-1.3.24-cp36-cp36m-manylinux1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.6m

SQLAlchemy-1.3.24-cp36-cp36m-macosx_10_14_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

SQLAlchemy-1.3.24-cp35-cp35m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.5m Windows x86-64

SQLAlchemy-1.3.24-cp35-cp35m-win32.whl (1.2 MB view details)

Uploaded CPython 3.5m Windows x86

SQLAlchemy-1.3.24-cp35-cp35m-manylinux2010_x86_64.whl (1.3 MB view details)

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

SQLAlchemy-1.3.24-cp35-cp35m-manylinux1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.5m

SQLAlchemy-1.3.24-cp35-cp35m-macosx_10_14_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.5m macOS 10.14+ x86-64

SQLAlchemy-1.3.24-cp27-cp27m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 2.7m Windows x86-64

SQLAlchemy-1.3.24-cp27-cp27m-win32.whl (1.2 MB view details)

Uploaded CPython 2.7m Windows x86

SQLAlchemy-1.3.24-cp27-cp27m-macosx_10_14_x86_64.whl (1.2 MB view details)

Uploaded CPython 2.7m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.24.tar.gz
  • Upload date:
  • Size: 6.4 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.3.24.tar.gz
Algorithm Hash digest
SHA256 ebbb777cbf9312359b897bf81ba00dae0f5cb69fba2a18265dcc18a6f5ef7519
MD5 90fca7f9b85f8083260c1d1d81d2c5e4
BLAKE2b-256 c5ab81bef2f960abf3cdaf32fbf1994f0c6f5e6a5f1667b5713ed6ebf162b6a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.24-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.3.24-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 09083c2487ca3c0865dc588e07aeaa25416da3d95f7482c07e92f47e080aa17b
MD5 5cbd61fccdf38273671443b13f990fdc
BLAKE2b-256 dc489ef0d1e2b67f84ba236233fa5e782c2ea0e50ddb09e0d61697bffaa0b670

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.24-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.3.24-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ee5f5188edb20a29c1cc4a039b074fdc5575337c9a68f3063449ab47757bb064
MD5 4af48036418cff411fce06f775fe367d
BLAKE2b-256 e94a7c6e83dae21e3c2e5df3a841b27bc7c19b9c4392deee43ef900a29c3e271

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.24-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.3.24-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8110e6c414d3efc574543109ee618fe2c1f96fa31833a1ff36cc34e968c4f233
MD5 53a1b21a93601d2b2929cd260b07a101
BLAKE2b-256 da5ecf330cf8dafa295c22685ffc1a590d4499bc702c538ecb109fbad35211ab

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.3.24-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bce28277f308db43a6b4965734366f533b3ff009571ec7ffa583cb77539b84d6
MD5 241fcb2901530361868bbc0067e50e9f
BLAKE2b-256 d8d73c56888525cb3ed8be4725450b542e35d3421265a51af9806a0e3a34fb93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.24-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.3.24-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4d0e3515ef98aa4f0dc289ff2eebb0ece6260bbf37c2ea2022aad63797eacf60
MD5 a3a6f70e5c624da9edad573442409b82
BLAKE2b-256 e60a103457612b9d2fbdff9b93e02a3adeb0d00061413cdd6a69e5dde77ff83c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.3.24-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 01aa5f803db724447c1d423ed583e42bf5264c597fd55e4add4301f163b0be48
MD5 80ddaec33a715ef6c65827a56b671a30
BLAKE2b-256 b608429c28a62519fcfba08d4a66a3bca99252310a4f76cadee42dcb34cefa2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.24-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.3.24-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fcb251305fa24a490b6a9ee2180e5f8252915fb778d3dafc70f9cc3f863827b9
MD5 435df5e8fa1ac70934dd3f62a4ddf41d
BLAKE2b-256 765ddc16958e814c81f7a745fcb6b862b69566af20d219feafc8d26716ce1912

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.24-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.3.24-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6607ae6cd3a07f8a4c3198ffbf256c261661965742e2b5265a77cd5c679c9bba
MD5 0ae250960901de3f6738a0baacae496f
BLAKE2b-256 500ae2e7fad3021c02a7dc142144ff65a1db8da4ca4dd2bf4fbe79727195294c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.24-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.3.24-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 014ea143572fee1c18322b7908140ad23b3994036ef4c0d630110faf942652f8
MD5 6d53bc9fc39f45debc86cca4bf5627c9
BLAKE2b-256 3166e83339467ff846fc3a4a322974627f77db85717f0baeece5ce6429b9491b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.3.24-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d375d8ccd3cebae8d90270f7aa8532fe05908f79e78ae489068f3b4eee5994e8
MD5 1adf27f167e744c0d8b974283e19423e
BLAKE2b-256 3be6af1b75117bfc582d2238716e11cbd78f7e2d9305de4384df7881c8e44916

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.24-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.3.24-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5de2464c254380d8a6c20a2746614d5a436260be1507491442cf1088e59430d2
MD5 3b84ede659367de51996d4e7a591a904
BLAKE2b-256 257322ff368e020b366c757369d89e8a3860067bedb93e2b2ffde379826aeebe

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.3.24-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 861e459b0e97673af6cc5e7f597035c2e3acdfb2608132665406cded25ba64c7
MD5 dfbc60c952434b87da470f9d59097954
BLAKE2b-256 fae4dd423849c2d393f289a68524674660400df94c163888b1040c1d68be06a8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.3.24-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c10ff6112d119f82b1618b6dc28126798481b9355d8748b64b9b55051eb4f01b
MD5 47eb3774a2e8169801b304f134355d34
BLAKE2b-256 b4fc5795b67a697a067d2a8c31535ed2c14a31b24f0edc97e4df23004d0f5c9d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.3.24-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d37843fb8df90376e9e91336724d78a32b988d3d20ab6656da4eb8ee3a45b63c
MD5 4f0ce2c18d346535f8fb96b672130b1b
BLAKE2b-256 7d4ed4d0e6d8e1292a90ba362e6de731999eef55a0b504a216e489870044b201

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.24-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.3.24-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0172423a27fbcae3751ef016663b72e1a516777de324a76e30efa170dbd3dd2d
MD5 8b92ea996748c2b06b9d13aa125d3808
BLAKE2b-256 449d8f7b74c558bab96a157090eb576afe29e890dde40b29e14b1580459da291

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.3.24-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0d5d862b1cfbec5028ce1ecac06a3b42bc7703eb80e4b53fceb2738724311443
MD5 8dff81ffa1d96b5c442f772c4614ab67
BLAKE2b-256 3144a86070dda790ce94cd7d9fb9281cd614c7d30850ed774ace9a84d0d5d491

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.24-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.3.24-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1e2f89d2e5e3c7a88e25a3b0e43626dba8db2aa700253023b82e630d12b37109
MD5 408c460a17b198985122458034e65294
BLAKE2b-256 f41100d964fd32c4f35c1a056e7b0a1e23879f90d930d1bdb599621405351e9a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.3.24-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a006d05d9aa052657ee3e4dc92544faae5fcbaafc6128217310945610d862d39
MD5 13391e1b7fbb230dc86525455014a184
BLAKE2b-256 f9f54ff72ff5d22de4a233456d0b8b6d0fd6e50ed67edb6cf4b5c2ed18bfb20b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.3.24-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f03bd97650d2e42710fbe4cf8a59fae657f191df851fc9fc683ecef10746a375
MD5 7ef3e637bd2cc9962d28328b27d4ca61
BLAKE2b-256 95b8bd550adc9b32860a26e1e1eaa39d122e515bfee3330be2a57016ddb4305f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.3.24-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 26155ea7a243cbf23287f390dba13d7927ffa1586d3208e0e8d615d0c506f996
MD5 1b3363ee308494575439f203ba39fa9a
BLAKE2b-256 c8d2d267af44bb1dd89e1d971b2666e400dfe9148bf75061a9c33d4ec22eb606

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.24-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.3.24-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 816de75418ea0953b5eb7b8a74933ee5a46719491cd2b16f718afc4b291a9658
MD5 abdf93d9b7a627530d4389f5a6b6b4c9
BLAKE2b-256 73bc8dd0411f8a7e1854e8ae1c34fc44652c7c5d0c86479abd52ea1d79b54e3d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.3.24-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e47e257ba5934550d7235665eee6c911dc7178419b614ba9e1fbb1ce6325b14f
MD5 0479c85bf2956ef420b92ce03eb8a610
BLAKE2b-256 6b05342f2b43bad5df6031024b98d63dbd88e59a73af52883a5e76cccb2161c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.24-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.3.24-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 34fcec18f6e4b24b4a5f6185205a04f1eab1e56f8f1d028a2a03694ebcc2ddd4
MD5 183e4534e0079a8c3d957bd013cb07f6
BLAKE2b-256 a7f910a0de3f6edb9e09df76c5d9d159a6e82bc66fff6b056913ea10f7084df8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.3.24-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 2ed6343b625b16bcb63c5b10523fd15ed8934e1ed0f772c534985e9f5e73d894
MD5 74fb5f055db67f9313db58f9b5dcc6f3
BLAKE2b-256 aa5400fb2a91e4b104ec774973b8345d0c78b6e2d5e087c61021afc87c1943ba

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.3.24-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: SQLAlchemy-1.3.24-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.3.24-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 0352db1befcbed2f9282e72843f1963860bf0e0472a4fa5cf8ee084318e0e6ab
MD5 4ee6b60c799a90e312f362b794f12413
BLAKE2b-256 157eaa1d8e9aec0a89e51dd3284ebdabf5dacc108230b59357107f612f17a445

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.3.24-cp35-cp35m-win32.whl.

File metadata

  • Download URL: SQLAlchemy-1.3.24-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.3.24-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 f3c5c52f7cb8b84bfaaf22d82cb9e6e9a8297f7c2ed14d806a0f5e4d22e83fb7
MD5 88964b50d70c14481c75206c71d87bcb
BLAKE2b-256 114846864ade2e5b8b1ee305c67ece39d370b8485d7a4870499bc65dcf650871

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.3.24-cp35-cp35m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: SQLAlchemy-1.3.24-cp35-cp35m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.3.24-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc1f2a5a5963e2e73bac4926bdaf7790c4d7d77e8fc0590817880e22dd9d0b8b
MD5 ba64101d3f0d03c3e3e83623be1df64e
BLAKE2b-256 f4d2a305be877a9f12feaa15afe3e9e7a65e46bea9899b35cbce3a949cb8eaa9

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.3.24-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.3.24-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.3.24-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e98d09f487267f1e8d1179bf3b9d7709b30a916491997137dd24d6ae44d18d79
MD5 7273cbc68549459fb792540f565260f8
BLAKE2b-256 f522d7803a9488d48d2413805ea799af35aa6961320d10fa45ba3407de62a2dc

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.3.24-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.3.24-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.3.24-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 14f0eb5db872c231b20c18b1e5806352723a3a89fb4254af3b3e14f22eaaec75
MD5 ec77476e196512b832ae4b22e89adbcb
BLAKE2b-256 20ee8430167f656fe1cb514e536c40dcddf58ad88bf1dd8f23235218c330e05f

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.3.24-cp35-cp35m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.3.24-cp35-cp35m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.5m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.3.24-cp35-cp35m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f1149d6e5c49d069163e58a3196865e4321bad1803d7886e07d8710de392c548
MD5 2bd2686dcb5f652077dfa6010c383a39
BLAKE2b-256 47e1f95f17aac1a3d310d45ed0ecf4404b6422b61f2d00b4d890100333e61738

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.3.24-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 fc4cddb0b474b12ed7bdce6be1b9edc65352e8ce66bc10ff8cbbfb3d4047dbf4
MD5 4b0ffe2584103e6ba8ccb13f6991fcac
BLAKE2b-256 b5f270473d2eff9ed9f12286b4f0c31050ba8088854cec87c91f7534c4479770

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.3.24-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 f597a243b8550a3a0b15122b14e49d8a7e622ba1c9d29776af741f1845478d79
MD5 15ed20551d0c9139d2319ef343d6f6a9
BLAKE2b-256 dcf726be9a147ba714ad22e739e02de88cb2df16e2b88c7c4921132c1b763061

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.3.24-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 87a2725ad7d41cd7376373c15fd8bf674e9c33ca56d0b8036add2d634dba372e
MD5 cd906e822978dbd494c355fad854558b
BLAKE2b-256 d684e6232c8d8efd87aea6cc96b39038b69c08c0ca4fc8a9ce833faa6f6503b1

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