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.0b2.tar.gz (7.3 MB view details)

Uploaded Source

Built Distributions

SQLAlchemy-1.4.0b2-cp39-cp39-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.9 Windows x86-64

SQLAlchemy-1.4.0b2-cp39-cp39-win32.whl (1.4 MB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9

SQLAlchemy-1.4.0b2-cp39-cp39-macosx_10_14_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

SQLAlchemy-1.4.0b2-cp38-cp38-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.8 Windows x86-64

SQLAlchemy-1.4.0b2-cp38-cp38-win32.whl (1.4 MB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8

SQLAlchemy-1.4.0b2-cp38-cp38-macosx_10_14_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

SQLAlchemy-1.4.0b2-cp37-cp37m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.7m Windows x86-64

SQLAlchemy-1.4.0b2-cp37-cp37m-win32.whl (1.4 MB view details)

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m

SQLAlchemy-1.4.0b2-cp37-cp37m-macosx_10_14_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

SQLAlchemy-1.4.0b2-cp36-cp36m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.6m Windows x86-64

SQLAlchemy-1.4.0b2-cp36-cp36m-win32.whl (1.4 MB view details)

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m

SQLAlchemy-1.4.0b2-cp36-cp36m-macosx_10_14_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

SQLAlchemy-1.4.0b2-cp27-cp27mu-manylinux2010_x86_64.whl (1.5 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mu

SQLAlchemy-1.4.0b2-cp27-cp27m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 2.7m Windows x86-64

SQLAlchemy-1.4.0b2-cp27-cp27m-win32.whl (1.4 MB view details)

Uploaded CPython 2.7m Windows x86

SQLAlchemy-1.4.0b2-cp27-cp27m-manylinux2010_x86_64.whl (1.5 MB view details)

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

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

Uploaded CPython 2.7m

SQLAlchemy-1.4.0b2-cp27-cp27m-macosx_10_14_x86_64.whl (1.4 MB view details)

Uploaded CPython 2.7m macOS 10.14+ x86-64

File details

Details for the file SQLAlchemy-1.4.0b2.tar.gz.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2.tar.gz
  • Upload date:
  • Size: 7.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/52.0.0 requests-toolbelt/0.8.0 tqdm/4.38.0 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.4.0b2.tar.gz
Algorithm Hash digest
SHA256 1013405393c2842f443adde2a2639681e9cdf4e850e01ab7d4d13a6f298d4dcd
MD5 279f941de202e8eb8db4cebd8c2b8788
BLAKE2b-256 87489f8e72dc8144bddd6179cbaf09440c9836e07c4b52736f3a17bb3745c885

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bacb47e6fad3e74c3edf46a35a58a83415e8f7eadcff1251b546ba01dfe2d6cb
MD5 29b0eff221b8a920c23b58cca1b1a0c0
BLAKE2b-256 130a422713e44e70d8321d01f64609942b7aa56ce31ffc53b31f333ae693eb5a

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp39-cp39-win32.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 822838774ec3b2f5016d4be281280dc5fcc53931c0db5bb3b10b75204cd2c619
MD5 a06dc2e544e7ac74018be86e6398b7fa
BLAKE2b-256 19d7892a1bc500dbb3d27e293ff053a394b57e1842db6604f09fb5e739e7706f

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8816a74f7116a2f85216b6f172f342bf4fa3f57dd2c1b74b14a0a319597ef3d
MD5 312b2886733f3ad5b5d46dcb5f5a4316
BLAKE2b-256 2fd3e99f5ecd6c25d1514c5f9b535c73660d18cf645d75ec13ccc9ded7405d46

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 63385fc36a40314a24e84ab77efbe7d90446b20e5fb67fd2bc970b4359e8e6ee
MD5 3828edd2b9367dd9cadbd375ee00a9f7
BLAKE2b-256 9185ba3677cd8fd85dfffe07811168d6adfa6bb2c56fa3635cc4cb5fc4d4b8ec

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7e073d20d196fbda56c7a11874e86812e136b32a39f64a3e4d5f6d24a420de10
MD5 6452489806bf543a9a9638227ae621cf
BLAKE2b-256 9a46a690cf27e18a3d7aa204f665bfab3eeef636e6219274721a5e4e7d91eba9

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 bc6a0ab03e7f349e791cc7efea87c5c1f7d99d5da86bbed271d83b01ecfa9441
MD5 c025f901c7bc665ad190647e3d772f7e
BLAKE2b-256 08ec5c8646fc86c6c118c33a8d818502161dc0c277af855f31750bca2d273af1

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9c7451999fa0867812176a1bd7d397d8d300818abd8124cd818273fca7e5b7c6
MD5 a7ea28360b977b63e6f45d1e4111bf39
BLAKE2b-256 422080e93dab47f34233ccd21840db0b7d7dea805c30bb1d2a1efad5b6bed59b

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp38-cp38-win32.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ab51fa00fc48c6d025f85a82f4ed51716a628907214c567c94705c8ec0571820
MD5 2a8e0a182fec5f684c40c1c58927b59e
BLAKE2b-256 4b04e5c886794c5d84cc416994c65182f4d9795701e45f769085ce4319882787

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1af14b0d5e93ee7b7c0aa3106ea7ccfddea2b064da7bedccd4dcbb585151646c
MD5 c0e4c5ab87ec1688ab421e73cdaaaade
BLAKE2b-256 5ef670f0935101ada415ad1d8b49c052bac7ed0cf5fd254ddb86a4ae6cdf0dcd

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2f93cd57587303f6cc1cb3107b09dfb4403b775e4602e71bb13e581921448758
MD5 344436bd9f4ce4084bf2f4128ac2cca1
BLAKE2b-256 1f397c024afbd3f4b95bce8bafbc03e27227ddf4209949f7db36d4b533228f7f

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 817a895499f3124574b920beb8f507f4c183d459363e84b11275b4f34c60f0ec
MD5 dd920055e15ec7d56ae2c8d419548930
BLAKE2b-256 c566cf180f8c97e310a49619975c95d538f69279b1ce316decf8760c94906e61

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 9f102a1ca806d4e6c2fc0c5f3a118d0efb1c77fbea27c15169b1569c59cba48b
MD5 fd27605e70205bac76b9ce6c09581c62
BLAKE2b-256 551745c47ed7ee558eeeef57d5f617c3079a461116f44987b4b6df5b8bf36c35

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 463dec09c87fc45afef503b795460e42f4203b67925988b03bf254a0fe41d2f0
MD5 ebf0495d5a2715c30aa8069b5ae62451
BLAKE2b-256 9c516f8cb07978e1bcc7626a62681272b048cc559ee8e4a4992ee5d70440327e

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 484741ea9b19e71767b077050268140bd69ae67ca566ea1a2bc682d5289ff1fe
MD5 828162230ed170e64a58748526ca1b11
BLAKE2b-256 84a0157ff410a44c0ab30ad4769b10cf04aa400c8ef1c463edcceb12e5effb28

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b07464a4861f4d9acc793734c5b89741811802128d6f0ae0389ef3ac42cc9cc
MD5 70bbf5ae77e8034c5abc5b3d9acf5d88
BLAKE2b-256 85a1a563b115b7a6fb6a1b2b28b65eaa6e923d765c7940f0effa83682930ed03

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 69b400ba262ca3dc0ae4f7cb38fdf0bc8b356b29fc473828785b8402986ac871
MD5 ed4103387701710021a75d4654cb70ff
BLAKE2b-256 b100d1abf8a1ee96715e83d206b68a6c425d4ada4dcc06d6f9123e1e35e3add7

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9119a795d84e0c3bdc0b9c9a346ce505551d841f31101dd94e18bc799c13c66b
MD5 6f2f015ae51f7ac30ffb8f04808d6ec8
BLAKE2b-256 206b537e385f7ec65ad548be635d03b34b01d79c2687b55dbabf70f96028c512

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 ff36fb8be181cd5cc3aadfc13365d6497302abc22ebbedc97b150d53b33b5a1b
MD5 174eb88d5751c5ae39b5b474db315dbd
BLAKE2b-256 f174792ee4411a2a320e8a9322b97ec5cbdd38418a17205125d611df3f195cc7

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 65d8e93515844b7f195ce77f6f7e67a55cc6a9bae9d651b678c3f4d8db35d327
MD5 095b031b5bd41b600245996732b6bc49
BLAKE2b-256 8d81e50d27c002f0d41d03c3ca59536ebfb31201282f137467ccdfec49e9f027

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp36-cp36m-win32.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7a85a22f33820ac280a844f3596d3b0d1ac893592a93be7c35306671aceb7e5e
MD5 217568b6909c6942f71055dde3254d25
BLAKE2b-256 58b4dfd6494e651fa1546e656543237abbead66f54b88d2b425c046d2b6ec275

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f588a5cec6f28aa682f97bcf73e9a1f36aeb27bf3822ad9ca858bdd1508b8fd
MD5 489321ccec716bbfe6dca796ee4f640d
BLAKE2b-256 e54f786df8dcaafb4785870af5f4149953e5965e85d21e0d9647f9150ecb83ec

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 125e1175f210a27f64275bc74e4425fe3aff73ca27f2f6d64cda1414db019a84
MD5 f1a5d3311b46227055fe6bc946015f21
BLAKE2b-256 3fc48335a2b1f4c1cdb7635c73705a35fea4f4a9757722f0396867e935d129ab

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d67226b1864cfe1dabfb1539826f58e2390984153d911a345900e20475052aa8
MD5 ad00bc1d6f9ff810fac79e74530f3d6f
BLAKE2b-256 d300bfa23836a04ec3d54e928ee54768be91c56588db24b7bdbf8a292e5c47f5

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f3b27c837b51abd1ea4e501780cb22a880435c77075e42337a2287a20818e30d
MD5 96d25b3e74be8fb6e43c3d94dfb8b5bd
BLAKE2b-256 eca3c0e95022428220eda5622ce4fbc935b83946d4ac48b5a89d56719e2168af

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c3bed1c69573e2b670bd75c306d6fc4271408b04bcbe68fc3aca0e978702a609
MD5 8b8b4b9b5f117e9f980a4d05af599149
BLAKE2b-256 cf4a714fadda81b40502b852a6d98bce56f350df62f8d3f765458ba7a7afa75b

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b5d817743f19b166a9c73f0e93fd1ae678b883d4488547a578d28af5baa21e36
MD5 a455794e897c74d1ae463e7f6b8586d1
BLAKE2b-256 8e0bf6d1f6c3a47d9753aae75abfec6791de8fcae5ef0af73d39c9826af973a6

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 b9e81408af71f48eb2f1530d173e106648c029699ed211da939ea8892eef19f8
MD5 ef05eeb41cde4dfb8753844f8f70ce6c
BLAKE2b-256 d4dc44c9ff7fcea97ab8c92fa73aa0e7d0525973c34efb5c328dadfe2e3227a6

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp27-cp27m-win32.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 94e8904dc3a06f04aa4355198d34beb3cea47639893dd2d21b97c0619e8d3c0b
MD5 229a194ca23d1f2a20e43b993775f307
BLAKE2b-256 504ddbfc13232a2e84eb56afe277694709535862394913c74d8a0420a3ec7144

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4a5d76a227ebe2e5f7022e3801d8b854c4c6c9f4df50edae1b5bd4500e3d0853
MD5 97b428f9b89c8d5d3b759259ea83c6d7
BLAKE2b-256 52348c4c139799e5a85b0b307991be9011a0326891fd69bf12d039256a869ed3

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7abe69b26464270133d3b1c6aeac8278396e964af4566e05992eed6e751e7bad
MD5 f0afa599c1db8309c22b21d2119478fd
BLAKE2b-256 a9b7bc60a4703e40b85f32dc9e9164f75837f31e9af463341bda773b1107e16f

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.0b2-cp27-cp27m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.0b2-cp27-cp27m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b2-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 ff75b31b735c17e9cccc8e0e5207bcfe9100bd335934560dfea86026bc38e81d
MD5 e4ee93b5d4bd3c889dc437133f9546fb
BLAKE2b-256 fe25be68c9f39a5abcb73fed599febb6b4339c2746b4ed839346a74e09b6811f

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