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

This version

1.4.5

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

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

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

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

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

Uploaded CPython 3.6m

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

SQLAlchemy-1.4.5-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.5.tar.gz.

File metadata

  • Download URL: SQLAlchemy-1.4.5.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.5.tar.gz
Algorithm Hash digest
SHA256 1294f05916c044631fd626a4866326bbfbd17f62bd37510d000afaef4b35bd74
MD5 6193929463f159756856a0fb3a58eec4
BLAKE2b-256 ffdd0b11e40cde41c6998dbe0d5acd7d742fd33a30d27207a5b256ac4de943ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0ee0054d4a598d2920cae14bcbd33e200e02c5e3b47b902627f8cf5d4c9a2a4b
MD5 f2e58f4abc67f82a2d2078eb520ad0b0
BLAKE2b-256 d46b41b97d5c83a5474a80a78ae35f84f19f89ab75e19b31b63ad43454947d5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2f11b5783933bff55291ca06496124347627d211ff2e509e846af1c35de0a3fb
MD5 28c7c81e698e2b2d48c4f9dd67f91b11
BLAKE2b-256 128376fc1262c7e2b34196948f05bef00e2d22349409852bce897f14758b9245

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee4ddc904fb6414b5118af5b8d45e428aac2ccda01326b2ba2fe4354b0d8d1ae
MD5 de96b2e15ac0c4b6cff11cfaea533a0f
BLAKE2b-256 c1ad8707ae5a8811618092f2241a54789a4fc5ffc55a57ef1956abbfeb45759b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4df07161897191ed8d4a0cfc92425c81296160e5c5f76c9256716d3085172883
MD5 53000fbc478409e54df69e1bd1c920a7
BLAKE2b-256 5873c4ed9324424340b1305a0daa00483cccf0978562784342b87077921c58be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 45b091ccbf94374ed14abde17e9a04522b0493a17282eaaf4383efdd413f5243
MD5 63e449e74f69f3caa2cf0f3967ed9c27
BLAKE2b-256 38a91b045a7c3f07b6ef9563b727cbd5fe0f9153f9685e478d5f15a923a7d61d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7de84feb31af3d8fdf819cac2042928d0b60d3cb16f49c4b2f48d88db46e79f6
MD5 88042359363973e88f14b364bf345731
BLAKE2b-256 abf7e209d552d4c11da75f219c8c8f73231b11d03e5cbb202a5e0e51ba958a8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 915d4fa08776c0252dc5a34fa15c6490f66f411ea1ac9492022f98875d6baf20
MD5 f42f3372dc23cdd4b472a4fab4224318
BLAKE2b-256 8fc514826e33ec5ac6bf4968987ceb9a0256811015f4142f41343892c9243e29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 301d0cd6ef1dc73b607748183da857e712d6f743de8d92b1e1f8facfb0ba2aa2
MD5 0a9ee600e513b50bbbb1ca1d41c26c57
BLAKE2b-256 dec27ccbbe8a99d94a9579a11d03622ea5c3c210e4e7e815a8f568dad3e3e870

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f62c57ceadedeb8e7b98b48ac4d684bf2b0f73b9d882fed3ca260d9aedf6403f
MD5 1036c87bf044c29203fb366391164be6
BLAKE2b-256 811cf14e47737cc6e855757d9afb8d4977b4e4b38fda7418d142e077feaa4018

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f8fdad2f335d2f3ca2f3ee3b01404f7abcf519b03de2c510f1f42d16e39ffb4
MD5 e00a5a5efdf3e6d055c78ecd7203bc4c
BLAKE2b-256 ded421ef94d548770794ce5d72052973016681b490212e2bbd94e7feaab2428a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 44e11a06168782b6d485daef197783366ce7ab0d5eea0066c899ae06cef47bbc
MD5 cc0241033fe6be7fae0034989a9d7fe9
BLAKE2b-256 3c9055237bd951088c0586e8b8f433838c6f21f0e4f52d93b77a93d31808b2c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8301ecf3e819eb5dbc171e84654ff60872807775301a55fe35b0ab2ba3742031
MD5 3dc517ae9feb37726e3a6c93fad0f570
BLAKE2b-256 ad85111482b606e4c58552bb2f10f9903acb4bfe4afc0dc791aa0dc5753ea58b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 11e7a86209f69273e75d2dd64b06c0c2660e39cd942fce2170515c404ed7358a
MD5 c385ac08df32710020eb8885e775e0b8
BLAKE2b-256 df7e779e81a56aad32e7a640b5fc529a1ac5755eb18aac81c3adefd08490a712

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 7f5087104c3c5af11ea59e49ae66c33ca98b14a47d3796ae97498fca53f84aef
MD5 504af39776171c5f115526c00ef61a91
BLAKE2b-256 6a194eecfb59379e706c9e5b3a2a79d500cc497cc70b9aaa31175707c6bed18a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5361e25181b9872d6906c8c9be7dc05cb0a0951d71ee59ee5a71c1deb301b8a8
MD5 e4e99213daa11f828dc7d65b61ed5461
BLAKE2b-256 070e4cfd6243bfc61b36f5fd7b4c37efb4cc3a11e644e0cbb53b5bd78395b8aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a103294583383660d9e06dbd82037dc8e94c184bdcb27b2be44ae4457dafc6b4
MD5 1945a282d0ebf10537f28a96bdb08422
BLAKE2b-256 d1d0b97571528fa5807995d4821542168781964ec40eb8d3ab3c4797a66298d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81badd7d3e0e6aba70a5d1b50fabe8112e9835a6fdb0684054c3fe5378ce0d01
MD5 42e5524f11a859eb42dfea64b7823cc3
BLAKE2b-256 f6609d29db32de8094be9843e4482641d36c17fad9fce2cb0f1060d1dbe64c0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48540072f43b3c080159ec1f24a4b014c0ee83d3b73795399974aa358a8cf71b
MD5 30f7b15c35c6bb4142945896a3511e0d
BLAKE2b-256 9097dee2afc2c984636dca489da8c8336690b308241c3a4c7a9fd883f3a10039

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 344b58b4b4193b72e8b768a51ef6eb5a4c948ce313a0f23e2ea081e71ce8ac0e
MD5 9ffb4a8663660b89c1d5f21a80f81649
BLAKE2b-256 7024586560bc2f46078b65a759984d4c5a480a3187e383c971adb1c0555a4028

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7c0c7bb49167ac738ca6ee6e7f94a9988a7e4e261d8da335341e8c8c8f3b2e9b
MD5 669d49db8e1cfaf1cd642e1e75ff92ed
BLAKE2b-256 d32df0844785c3f1a1c8fff3edc491b13257aa91046ef8f3c6fcce5685abcfb4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c22bfac8d3b955cdb13f0fcd6343156bf56d925196cf7d9ab9ce9f61d3f1e11c
MD5 1f8d06145e81d7fa66b0882cd01aadfa
BLAKE2b-256 ff00abc77f38cd2972a74ef8862f57e173dc718416fe31f167396585fb4bb8f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 8d6a9feb5efd2fdab25c6d5a0a5589fed9d789f5ec57ec12263fd0e60ce1dea6
MD5 7753607499a34bf0bb7c560bf61e8fd0
BLAKE2b-256 c7650389e20435f74e0defb1225b8140f778df6cf8fe2b41b3713a243155da6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 fbb0fda1c574975807aceb0e2332e0ecfe9e5656c191ed482c1a5eafe7a33823
MD5 9b81aeef3c97ecf3ed2abff0d4942c8e
BLAKE2b-256 bf7303ed13eb3264f6822482475451ad27f2aee80969972dd981d3f13e93377e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08943201a1e3c6238e48f4d5d56c27ea1e1b39d3d9f36a9d81fc3cfb0e1b83bd
MD5 9bef97b3c36acdeec4fde3e170713535
BLAKE2b-256 a1d5e98b77c69ce64e09f17b0a72b85e53d72be017dc532b151354c1c3afa055

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f7ce3bfdab6520554af4a5b1df4513d45388624d015ba4d921daf48ce1d6503
MD5 ef84e8e20ebeb2cab581e1a21b2e58e9
BLAKE2b-256 311e1d28758e0e79f3a3e93d6450e53fc8b0dfb759a1d98252a9d84767d15823

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 70a1387396ea5b3022539b560c287daf79403d8b4b365f89b56d660e625a4457
MD5 85e343eb98a11636045c549945c66471
BLAKE2b-256 bd2d829ca237f62b6ca7f653a66852359ce62ec9dcf9355b61ddc439c18ac843

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a08027ae84efc563f0f2f341dda572eadebeca38c0ae028a009988f27e9e6230
MD5 777db3203d65cd9babb8dbbefc238ea7
BLAKE2b-256 ea82155a53ae8965e27291d51938aab6e73322bcabd969b4ab4dd2fc58b137af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 82f11b679df91275788be6734dd4a9dfa29bac67b85326992609f62b05bdab37
MD5 a9c4759618c2f3f28f16ccc091f2ffa1
BLAKE2b-256 12a8176303f8a553d55134c5e2db31477ef414460f6fda09d7d0537ece804285

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f16801795f1ffe9472360589a04301018c79e4582a85e68067275bb4f765e4e2
MD5 88d527f804bcc1bb0faeb453e56fd948
BLAKE2b-256 651af1a2dc48269bd18288c6cb6cd4fca901914c14a0628c098ff75177d8b59b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 02b039e0e7e6de2f15ea2d2de3995e31a170e700ec0b37b4eded662171711d19
MD5 5cf040bf6e31f2fdd7797a34fa89bec9
BLAKE2b-256 bf6edcbfd24ccbc11043ddf2bc2e6e63c5795cfadbb13b430c389cb516a77ab7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 94040a92b6676f9ffdab6c6b479b3554b927a635c90698c761960b266b04fc88
MD5 adb07787d163b4e24392c1ff1b8c17b5
BLAKE2b-256 22ee8cad492db4979ca8d9ce4038512e3f9311eb6219cf22b15fe998afaae824

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7481f9c2c832a3bf37c80bee44d91ac9938b815cc06f7e795b976e300914aab9
MD5 9d6d63dbaa0a05f90d1f56823552abc7
BLAKE2b-256 292fc3ad23dc6cf0c07e0e405dd46c92355846136ba85ed8af55a2e5b49ec1f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.5-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/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.4.5-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c3810ebcf1d42c532c8f5c3f442c705d94442a27a32f2df5344f0857306ab321
MD5 303e32ca2775a96bdf0101cadcbf90fb
BLAKE2b-256 b1b1305d34061c27e11c9c4e982d264e3378409d7df1cbec5af1aa48cb8b5860

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