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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

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

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

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

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

Uploaded CPython 3.6m

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

SQLAlchemy-1.4.11-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.11.tar.gz.

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.11.tar.gz
Algorithm Hash digest
SHA256 4ad4044eb86fbcbdff2106e44f479fbdac703d77860b3e19988c8a8786e73061
MD5 c3e2fa160b365a27faf829e8da92ff1b
BLAKE2b-256 47a9e81e7e37c241ba4cae646c4a8ca1a32d804b9a4c38b524ffb4612cf6d9c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.11-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.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4a2e7f037d3ca818d6d0490e3323fd451545f580df30d62b698da2f247015a34
MD5 460a238160c0d62076a53b7ea7f7487b
BLAKE2b-256 91f5de0149b25375a6890f4646946bd0485aa547c98b42cecf2eb9a37dd31c8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.11-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.11-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e7d76312e904aa4ea221a92c0bc2e299ad46e4580e2d72ca1f7e6d31dce5bfab
MD5 ae2d960d980788c766d81e989d135ac5
BLAKE2b-256 e550628c669197e6d6a297dc311edfdffe64adee9ded8afa9f5fb45333e71926

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.11-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.11-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45a720029756800628359192630fffdc9660ab6f27f0409bd24d9e09d75d6c18
MD5 c705c5ee3587b4720e05fdf246077b88
BLAKE2b-256 20b483dc27101e91863b36dca3390430893224f40fe48834f612effbe599be24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.11-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.11-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 842b0d4698381aac047f8ae57409c90b7e63ebabf5bc02814ddc8eaefd13499e
MD5 c75e310bd0712ed0101699a443cf3edb
BLAKE2b-256 2af44909d4a9ebf644804197e5a2b6b92cee8b5aaebcc74b2fb0eea9883b1fd1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.11-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.11-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cd823071b97c1a6ac3af9e43b5d861126a1304033dcd18dfe354a02ec45642fe
MD5 e0d9c5ab49a69fbba36b8ae3bd9dd25c
BLAKE2b-256 64fa479bfb5a6c96422c2afc8d6b0f6fa76de82984194c674ccf8cc8bd177a6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.11-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.11-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ac14fee167653ec6dee32d6aa4d501d90ae1bfbbc3eb5816940bccf227f0d617
MD5 bf09d60a2d316521e31f1196a6424565
BLAKE2b-256 fbcd4a5905ca2837b4371b8856db39bfaf2d76969b21794acc87ba5369914770

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.11-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 789be639501445d85fd4ca41d04f0f5c6cbb6deb0c6826aaa6f22774fe84ef94
MD5 28e6babbadf4bd3e477ce847c3a1da17
BLAKE2b-256 79b117fa143909c5b4ad2b911e6fcc54c7f04496a7f8880c4f50fdb141eaaa18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.11-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.11-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 19633df6be629200ff3c026f2837e1dd17908fb1bcea860290a5a45e6fa5148e
MD5 e28da31e980ec102f1cce8f37c5dd8dd
BLAKE2b-256 6445ec678134cdbaed57daad312cc7093db8addc24bfdee4c19d1458a63fbb04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.11-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.11-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 961b089e64c2ad29ad367487dd3ba1aa3eeba56bc82037ce91732baaa0f6ca90
MD5 57d109ee3dfd8f532f45d01ad295ac6b
BLAKE2b-256 1f4897c0a51f7c50f47b275a9eb0612d55c23626d06449dd4471342884697cf6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.11-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7180830ea1082b96b94884bc352b274e29b45151b6ee911bf1fd79cba2de659b
MD5 86b6ce5814e338085e8d2d95045e7739
BLAKE2b-256 aad0d1412ba8dfad90c7835a1d5d27169955a95d6d8f6749ede9a80d18c4a42d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.11-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.11-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 96de1d4a2e05d4a017087cb29cd6a8ebfeecfd0e9f872880b1a589f011c1c02e
MD5 c924a172802f45543dffd3b93d3cf0e2
BLAKE2b-256 06a832c543a2709b2f33ebfe202c990e1f86fd11e5d02cf2f670cbf1f73e3a31

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.11-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1735e06a3d5b0793d5ee2d952df8a5c63edaff6383c2210c9b5c93dc2ea4c315
MD5 72b87b3183dd3c9d93c39a1c327af5f0
BLAKE2b-256 680896e3586a79ff2123e0762ae1b6c4b2937c691feae232d83b1fc8d1c0020b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.11-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 034b42a6a59bf4ddc57e5a38a9dbac83ccd94c0b565ba91dba4ff58149706028
MD5 9c04fe4eda93bd635639d6ac58bd37dd
BLAKE2b-256 52fdea37b626e6fb7be3885ed71e9b96105d54ec62df775e9b64d7e803d0da2a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.11-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a41ab83ecfadf38a47bdfaf4e488f71579df47a711e1ab1dce30d34c7c25bd00
MD5 9746ab085514b23a5aff2d54e4c65dff
BLAKE2b-256 f9bf60b4fa93f62ce63381550eac5e10a58047ea410d2bce703a56faa99df893

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.11-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6ebd58e73b7bd902688c0bb8dbabb0c36b756f02cc7b27ad5efa2f380c611f95
MD5 7b7501ea714e58a46cfeb3e0d230a31b
BLAKE2b-256 4e67789e6d463f1b16be0fed4aa6e15b03514dff0fabcfa085ce8e47861df811

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.11-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9fdf0713166f33e5e6ea98cf59deb305cb323131277f6880de6c509f468076f8
MD5 133066d220f19749ef0dc0bf8517abde
BLAKE2b-256 ee6d2e3710347ed9dcaa84dfa93a35cdb4f785ef240a25d9e2fc0c1bad019336

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.11-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98214f04802a3fc740038744d8981a8f2fdca710f791ca125fc4792737d9f3a7
MD5 dc3087c6a618bacdca9f437f808aee71
BLAKE2b-256 cf169df1583356c0abaa420eca5626b7e33b9ef8c0bf85cb2e096aa02cc5a2f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.11-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.11-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f96d4b6a49d3f0f109365bb6303ae5d266d3f90280ca68cf8b2c46032491038
MD5 346969c1d2f89738a2f5cec3d843fccd
BLAKE2b-256 44f40f7090ffe89bd9c17875ff5420352ff7848c35245d6f5aa5e5d655cb9416

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.11-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bb1072fdf48ba870c0fe81bee8babe4ba2f096fb56bb4f3e0c2386a7626e405c
MD5 67f7561d7e17ff326cdeb0904431f1e6
BLAKE2b-256 84b3d1382dadc312a5ab79a993e2e30b18090ebb9c8d3e6a0a60e38024a03914

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.11-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 069de3a701d33709236efe0d06f38846b738b19c63d45cc47f54590982ba7802
MD5 5e98e2468f00559d419f2a00128467ae
BLAKE2b-256 cb2ee329e9d11876ca9fc382690e06a5040d05712a99b9e2eeebe6e4e6c54081

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.11-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 452c4e002be727cb6f929dbd32bbc666a0921b86555b8af09709060ed3954bd3
MD5 832357a3b89188adcf3c677d0a0dbbf3
BLAKE2b-256 f08f4fae293d15f44acdf0051a2bbb2e58972300b737c2dfe7498bffb36abb38

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.11-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 7d89add44938ea4f52c7641d5805c9e154fed4381e874ef3221483eeb191a96d
MD5 9c7625eb925f8b604dd75f0dc37c9f2d
BLAKE2b-256 5ba0e63589cc8804c4c202318dce4feec7bb6b1ce863643fc45e998f884fd71a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.11-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0140f6dac2659fa6783e7029085ab0447d8eb23cf4d831fb907588d27ba158f7
MD5 35d374c5b5e4f5e6c7eafbc9cdcfa992
BLAKE2b-256 257889da6672fe65d25deb1d443eeb8ed730b27f353e2068d8f9ea0e92fae522

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.11-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f772e4428d413c0affe2a34836278fbe9df9a9c0940705860c2d3a4b50af1a66
MD5 d9aae4e275db896668304f3960f25673
BLAKE2b-256 ae99aecbaa2ab56730604f369859b1022af0117c0c2bfc40fa70a7a2b2222dcb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.11-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.11-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a7d4da2acf6d5d068fb41c48950827c49c3c68bfb46a1da45ea8fbf7ed4b471
MD5 703586b82081287bb11585ef7d335672
BLAKE2b-256 1c8afe373faf91751a670aff66181e88d3de3e5f51a2d08c5c329072c6b6a371

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.11-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4f631edf45a943738fa77612e85fc5c5d3fb637c4f5a530f7eedd1a7cd7a70a7
MD5 c5e1fc2f43e3143cc7c3ece412080b75
BLAKE2b-256 f11c4761caa3c8925f141d2b3f368a72cbff5a19fe85b620ca02b14d17450805

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.11-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6389b10e23329dc8b5600c1a84e3da2628d0f437d8a5cd05aefd1470ec571dd1
MD5 670b5c21e06c3222210b1ec862ba5412
BLAKE2b-256 3b7b6288ec09168df35e70a9db17f61f7b50242ec62dae6be74b0e3563176967

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.11-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 1e14fa32969badef9c309f55352e5c46f321bd29f7c600556caacdaa3eddfcf6
MD5 538fd6e8eddec6a614e99e4c83590750
BLAKE2b-256 78122412eaaed2f34201d1ba97ecee365a8f91c3bd0c50f7818d3c989d65a748

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.11-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 31e941d6db8b026bc63e46ef71e877913f128bd44260b90c645432626b7f9a47
MD5 9dc27e7ca98e9afc6bb86afab0848441
BLAKE2b-256 c671ef6e407b1dd7bbf86d62bb7e1df41b951ef67e0525fc499ee23dce4716d7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.11-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 d08173144aebdf30c21a331b532db16535cfa83deed12e8703fa6c67c0894ffc
MD5 7923d8effc6f4a5533e5e4c6f233cc9c
BLAKE2b-256 2ba37c1f9d755ae8cd969e35a877a51a999777d3930c81cbe41b7a45fabfac3c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.11-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 9cf94161cb55507cee147bf8abcfd3c076b353ad18743296764dd81108ea74f8
MD5 b08ce02588f4ff7131d9591e24be1e77
BLAKE2b-256 b33ee17e04509f50a242614b6bceadea85571a339f37ae7a7b24ef6f0746d00e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.11-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 03a503ecff0cc2be3ad4dafd220eaff13721edb11c191670b7662932fb0a5c3a
MD5 44101e5d88a4f89d385908b1d4aff8ba
BLAKE2b-256 4fc0d839ade6b5da5a1dbc2fec037436ea49cf74ac94fe5ea7bdb9cfd36f5ea2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.11-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.11-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b8b7d66ee8b8ac272adce0af1342a60854f0d89686e6d3318127a6a82a2f765c
MD5 ee576385883162f7639d7d3db7f9dfed
BLAKE2b-256 5b51d42ff248c660c7618c35c6d0502f41b7947a25f8d2c9d43ca587e43a44ef

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