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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

SQLAlchemy-1.4.10-cp39-cp39-manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9

SQLAlchemy-1.4.10-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.10-cp38-cp38-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

SQLAlchemy-1.4.10-cp38-cp38-manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8

SQLAlchemy-1.4.10-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.10-cp37-cp37m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

SQLAlchemy-1.4.10-cp37-cp37m-manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7m

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

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

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

Uploaded CPython 3.7m

SQLAlchemy-1.4.10-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.10-cp36-cp36m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

SQLAlchemy-1.4.10-cp36-cp36m-manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.6m

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

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

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

Uploaded CPython 3.6m

SQLAlchemy-1.4.10-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.10-cp27-cp27mu-manylinux1_x86_64.whl (1.5 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

SQLAlchemy-1.4.10-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.10.tar.gz.

File metadata

  • Download URL: SQLAlchemy-1.4.10.tar.gz
  • Upload date:
  • Size: 7.5 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.10.tar.gz
Algorithm Hash digest
SHA256 483fb869a3151dae6d1c97d242fe2e1b08f97bc71bd4946229930b9efedc9d9d
MD5 dbffcf9603f1e080e5354036192f265b
BLAKE2b-256 a4383d7915f4d92037f621abf0c1ef4b3689551bcb7b804f4e85dcef20504e46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8b3f2719f8957e3402bdcbddde8054399c09898e62ef4b2a7f946ae7e78e7945
MD5 8bda49008f8184096cd0068b46ce2a56
BLAKE2b-256 6315e19b5c07b631fdf5f0189a14575df0f67acfebd28a536dd3a1b560670730

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.10-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 dbbe277b32aa2df9bf87979d1ec10b5a9288ebf7346c8ae28013db1f32737850
MD5 af9b749d08c82ed233c7066698f74b5a
BLAKE2b-256 5cd7d68c32d2863f7e82b2b5d117f8e3ec2f23008b9b798a702b2c0c870df33c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.10-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 552056e00c58c73fa69c04ba854a3590cd5efd09ee380f06c121553fc42786d5
MD5 130a102b6d57e91416bedbb8718538c0
BLAKE2b-256 ac0a5cb2042f8d27c1eaf76cc55b5a7b1b8bff6b2106abed9cfc18e06a7d743a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.10-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db314bac56215008af4c1ca2d4cb4e8178140dc009f2f6b04d5af73b26ca895c
MD5 399a805cbe5dc48decb6a845a22bc887
BLAKE2b-256 04e3186b6c57c88d09d1eb1f5ab8dfe685462c97a7edcd86ebb72f6d4b4eb7fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.10-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 05c3f89fc4c459a71bf643a1145a92ed09e6824c04b9190ea88e2155f42e4ed1
MD5 8fdd6812fd99bbd8d712945ff6aa76e5
BLAKE2b-256 fe265e7296864533298fd8ebc50587356eda35f81cb3084f999e827d4aeefbb6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.10-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ac61e7129099aae447f0c2c00350b6e598e8985d1891bab21c79affd58c0a23d
MD5 748b371c781e6ba3ef0f70bbcf84c8f6
BLAKE2b-256 598fdd5631d1798510ade8adef151c0fd6a3cf827d9fa46f51197898bf41b478

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.0 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.10-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 25375f44246e9dd652ba3a566e55a3b35ad7fd88f63bdf1266b6612b956e72cb
MD5 af464b28153088d96f580d74fabde744
BLAKE2b-256 8300bf9e889c31d6cc253f04f2ba935656087f9464b2c3b54ab67defbdf553b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.10-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c5f138ffa743508488bf40affa4f34e14deaa47e2ae15e6b1e00fa1220983e0d
MD5 62497c85073a19a0c0fd458efa0c130b
BLAKE2b-256 bde1043d155ec80cde0ae30c1ca1fd54dd35e39f93afb1cab915cf2a192cf9f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.10-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4b49e4700660964e70676aed5b83650b1b7fbbb7ff4b8fca587212e3496cb965
MD5 8844e861d5b7f506e2dff446a9adbf69
BLAKE2b-256 2bb994764435babd3fd3f5dcf43a2d27ae5db55f1c5249b8ef236933ef2cb7a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.0 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.10-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4dca554ffe5041bceb5bc938316a46f8391802b5607ed2bc94bfab539545bea
MD5 6b61195239a96a10409defca492d5342
BLAKE2b-256 4f35db70193099083dbc55f2536e5370677075b2799c4ab4cfbc90f839ed48d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.10-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 adb965b2310c01249481a3f94a1ab2bb88cd7aa78964a6252a38886a9ecdcaf1
MD5 1b78a6be45356a8c4051b0eee0696708
BLAKE2b-256 193c55fe0257a95d1ad6b7ea36271bf5c3c9b40fa9f229ebd8d675295e7ac395

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.0 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.10-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a2a11d6102ed1f3c949bacd2381e47c0587413889dd35ce4f8b68927ec2e5dd0
MD5 be9d8085e934f5ac43159d09f380d6ba
BLAKE2b-256 daab75f32f3d668261d6000e835e480a850b30be94d1bbf9c0b7093d82a38a34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.0 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.10-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 01988ae8841b8b2efe2bfe5094466d7cec09c69afb430de42c1bc847f2742579
MD5 2c19d479eff0b8848926aa60350c4339
BLAKE2b-256 d229feb697c8841d174c438f7d5a2786d04ec34f73fed27bb359f2f36bddfb13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.0 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.10-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 8d2c8a1f1352a9db7b5c370411f61cf36b9bfed61cbac4ae1033c39374981a0c
MD5 ab05d4bb28b3a8f6d5a52febfe2931d2
BLAKE2b-256 5e6a9a6619e323a89f610145a5023965dcce307fd7262b75d108bf850e94eb2f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.0 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.10-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d5618889532bd4096f7c7eb143e5e7039c24eb4327aef7d87d8f56220c4fdd5d
MD5 028c350ea11d3d0fcde695f3cb13fb2f
BLAKE2b-256 26df032a281e00e684a7abbdf47e28665ad24a45a5106222e44f0483cd75ba6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.0 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.10-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 83372e25c1cc2100d00603907abe8d05d1143f8907f841780760c694285b714d
MD5 a8c9e20f60c04f04da6e0866160abf29
BLAKE2b-256 87be1ebdee48262069b0c47845d37f1d8efc794ba4fbf98394d68dcffe14afc6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.0 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.10-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 482e38d6ea79b3d2d136044188545bf262ba001d8a4f41112808a8d457e8bb9f
MD5 0046571bbf577c284717ca9d093af78f
BLAKE2b-256 5b615e456846c5d710a64014220fc3b9a26c7bb167fdf97a050857226432e57c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.10-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56fc949c075085bfd4aa38a2cb0e3dd3e9f6a1a01a628cb1225adbd169dbdeb4
MD5 f096287e996ae9c947d1d6b435f42016
BLAKE2b-256 32cfd85f97ae4372ca26a0ce880357ce49fef495330cc50bb6860308fabde656

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.0 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.10-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 08c5a58bfbd6638c17b13fad8d78c75756a11d67948615ac6713d8aaa19634ed
MD5 a1683d27e22bccb5f9279f00f9efe1c2
BLAKE2b-256 cc32e7370c98122b2bab6986d1921d9009e59737a3bea108c315e5a0912afad8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.0 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.10-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 99d90172d1d284550caa490617f50392dcdea330401fad0eddb95b83d6b4a501
MD5 92cb8d5305955df51ee78715de2600bb
BLAKE2b-256 65020fabb35cfb9245c4f6b56b59fe1d6a5d2052ba515d9fc6c4f18c94362077

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.0 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.10-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 8bb0a2767a88e41be9d414fdd18e3929d7aa0abad81a6ab0747d5098d785c8a9
MD5 cc6eafbc02cc2cc5863ca1ecf433090f
BLAKE2b-256 02773f103982724f430f7220df08a0ed7ab906bbbeba3393bb089358c18842b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.0 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.10-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 bc840a012a5521635cb084b690ae4a2587072b34707c626de57619c96b079ffd
MD5 8b100939707b5d2b991b47fea5ba272e
BLAKE2b-256 ee4b240081c7932b5a32a2b6244fa4f1db4135a4bb25c720c0e217b61005c7d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.0 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.10-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2bf1a89887ff316c8bc6e69197dbd37ef84c41231c2d92c4af438a391fb730ea
MD5 d6902beb4a0d3ef33ac25525c05c3ce2
BLAKE2b-256 0f63e63b77489c5cbb3cc9d753c99ba58e1723a50a5d083dee7c6ab21ca22add

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.0 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.10-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1088a429716ce32f30925228d56c74b3566dae880b8b89d12d3245469d0e494
MD5 2da6b11d28c8e6c694292c3dbef3a434
BLAKE2b-256 8a7b260aa2398e66b4c0e9f5f4e026c15b89dc36ab2368bdc51d4d52a20534cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.10-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b127b4c6961005eb16e46d6f84dc272af58259c7e373dc49e287b0157a776073
MD5 33d0f0bf2041491c3ca1e9fc63cce487
BLAKE2b-256 132ae059a77a0bd544d47920a02fb2499426c997b547a61e9eba9eada91247f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.0 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.10-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e55e7624c5253fad07ceee52d06ce9b562895a33c004f48118b05a50773ae380
MD5 5202b7e769faa0d7a95578bee54f7bc9
BLAKE2b-256 854fe2bf66e72ff7b2ef079200f571685af063997923a356a90d72c4cdf08f7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.0 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.10-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 92b153cbc0138931e82cc26fedcd84d55ac6f6916e881799e540ff4d3c875b67
MD5 665d45459f3089b2545ea1b52ebd3ee8
BLAKE2b-256 83a2e211d0401663fa4b27797241513bf5ebdaa48a4bac644ef3c0c09e34b8a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.0 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.10-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 13508e69d6feba528ff583f81b840b837a085456fb084db968a65e6bcc4f0193
MD5 467ac62af370652b106406aa1fff8361
BLAKE2b-256 b64c027798bdcc36e4d162fff8b95e0862fb0d53240e78619f1852a2bf017e08

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.0 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.10-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 978a89d594d477f2bf088aedf2f60fb213b0191f8f8d96f5b48b7e0cf76b420c
MD5 dae78d38f7a489653ddc68959a9405ce
BLAKE2b-256 e688b95da41e6de532ff1cd515e862125674c39855723f3e6db95cca5e532646

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.0 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.10-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 4513c4d2a9d03239dd48c558b7e89969128e07493c8930a4edc2ba9c6ba6f098
MD5 08a509dab69b408b668f72c6c8282e5b
BLAKE2b-256 61efec081c15bf0e5e3b280790598f520c1bf9ca80044f96b51d5914217fee01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.0 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.10-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 e7e52b59e0895c3c85eb271e2b77b9507b131eec621a2de1986682a69cc96889
MD5 2cb2e036f48fcf18c7b3dea80d57b7da
BLAKE2b-256 5ec7f286e96a29ece8945258eede4d8f057af92f3c8a97a2beb3dd67665eb55b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.0 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.10-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 266fbf4a0d3f4ed614fff60485e3ba83d3eef4a736102b9b7e461402dc930234
MD5 ef02e035b2568e5868a50922fef468fd
BLAKE2b-256 8ac700914254bb26d7b7c8fcb7d3062c750601b146521a7a9d0333565c1746f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.10-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.10-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 6c24884bb8d0065cf6f61b643e8f32947ef8386a5bcdad41b921ed81994ea8f1
MD5 7b38772d7c33c491049c17a096b50809
BLAKE2b-256 b6b5084c18c9b792d07fa5def6f8e974f6aafb8f8e019d85972d383afb61986e

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