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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9

SQLAlchemy-1.4.0b1-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.0b1-cp38-cp38-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8

SQLAlchemy-1.4.0b1-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.0b1-cp37-cp37m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m

SQLAlchemy-1.4.0b1-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.0b1-cp36-cp36m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

SQLAlchemy-1.4.0b1-cp36-cp36m-manylinux2010_x86_64.whl (1.4 MB view details)

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

SQLAlchemy-1.4.0b1-cp36-cp36m-manylinux1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.6m

SQLAlchemy-1.4.0b1-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.0b1-cp27-cp27mu-manylinux2010_x86_64.whl (1.4 MB view details)

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

SQLAlchemy-1.4.0b1-cp27-cp27mu-manylinux1_x86_64.whl (1.4 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

SQLAlchemy-1.4.0b1-cp27-cp27m-manylinux2010_x86_64.whl (1.4 MB view details)

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

SQLAlchemy-1.4.0b1-cp27-cp27m-manylinux1_x86_64.whl (1.4 MB view details)

Uploaded CPython 2.7m

SQLAlchemy-1.4.0b1-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.0b1.tar.gz.

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.0b1.tar.gz
Algorithm Hash digest
SHA256 97f7382cf1bd3cdf663bec44e1fe44a32521e9d939c5bb603517cf5a6c7ab426
MD5 f7f4791177e9a03d6ce0a8aa0264b33d
BLAKE2b-256 02cbc276b6393fb65649597f67144959576131af4cc69b57bcabc2f9ebdfeb32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 46a59414b142570af0e92362751f5402336be0a8cfebd6718f107f2ac284fa80
MD5 41647d3400babaa4484d62d3edc5ba2b
BLAKE2b-256 b4cbdb807cf7786629d14ff7f61970f6ec3a1cb536b1a83b23f1e229b3ef48d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 72d9c09d9ac08bcae31a2e4f7192c31f3709768ccab2cdeb59d04b1bc0cd254b
MD5 ed8f637c9e52128fde0052425cd29973
BLAKE2b-256 8f17bc96d52715ed33193759c82f2e251bb989bc6dacd29b0773debfe39cb045

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8fa8040e6594394d26e102739d6fa7455758baa01b07256c2a85e945e521954
MD5 c9818306c27877be8086320c7cbcd58a
BLAKE2b-256 b776026e7fa6d0a6883a918594dbfb12ce26eedc30b70dfe8e40862f0a229965

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3ca2224fe4ebff1ed6892bb64ca109b771fdfb0e02fba7bc23b51821ec6c0b38
MD5 133b9fa3c2c35bbd3d113e81fdf7e86d
BLAKE2b-256 76142d81158b85b1d538d5e785a28be9802a6d934f43d3d77cb6724bcc1d46c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d6926b43bfcfe1ee9599a484312dbcf98970eb566d8a8ee3ca5f5f46049b2131
MD5 2b5d15f55f0199764ed116c942a48c5c
BLAKE2b-256 b71e52eaf7cd4112a11fb468c3491e0ebe6c4057e719cf7e1c485976c5594b3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c52af2e478b0112ba1bca20572959ee2e9c41ec693b249f5b88d622df130409d
MD5 873382982676f61af7b5a68cf47d20aa
BLAKE2b-256 0381e31716f623691c5f092c7e60b843c58c70bd02fbda14f4c3d7f02ffb287c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6bcdc9993fd7fc5df9590cad425770164849c64d803e8035ebef02e98cb9ea3d
MD5 dd94b44f9ceca74e3a629f9cb45a3244
BLAKE2b-256 c606565d020d59620db60bcd6cad3a900bd3272355114d4d8c42ecb11ee455f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 87b410fe3603acb874511889bd6703e69014a9493c5403da9c68980fc3999dcd
MD5 1c5ac1e6e343ed944fb79a5f81d52b29
BLAKE2b-256 dcccdd56e02ff855eafcd171d3e77ce644dd14cb29d0d16a19a5cd45fea914b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f0e73204cc2b810fcc2e71e7dcd0a34faf85e7276fbc4569f7ae3146f8fd50ee
MD5 96d9d6c6ea5b7b860e602326032d8bf9
BLAKE2b-256 49e811ae9648945eefa12ce8b81b64eda6b966d9eb18b5e8741f03d2a8485a50

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 64962c64a21861a1785a4cfbc6f90d941c6f53a29fc2139ae2e2d2d29eed9c0e
MD5 7401104dec7dd13a2849e7b50702e293
BLAKE2b-256 0bc80ec012024267213bc812a04abaddabe5da675a1d07524bcb6457a56af8c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 684062f66e70e4527002813381f4658e0ac3584d0cf8f621015ba219434df72f
MD5 b051c732d2231aba40ace08c5e925b8a
BLAKE2b-256 7b68190341b0899b0b1edfe539e63c5593a2c707e69025feb2dc3f7eb78e9579

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 125fa3cf8212d803624f7d5eef1c8e7028170aba4bc21a622e81012050da8826
MD5 8e5782f9ccdb9fc5d20944959faf1eb5
BLAKE2b-256 280252db13eb7ecdb4c1d462f5363b5ed19768675473447bfb0b3788dad7c368

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6c887aa68d58207fe18e931a6a997017e1b71f00f84011a693ddd23b55c0e08d
MD5 3b26647658d116d009a607624f4ff6d7
BLAKE2b-256 8d7d3ea8f20aae5c60456484b89b395aef66530f2a0f156c7d4107b600a82712

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 20c581b9ded33fc39a23c87087a627e6419271b11e1f694f5710349bac411cb4
MD5 1827b97609dffaf281c624b00ce17077
BLAKE2b-256 c212f6f3167de603fc8130239e495e0d6e0cb6d90773636464624aca94a186ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 708b5996c2f54b426f1e1e0767f3dcd441152802cb18e369db152a82f629bb50
MD5 a683c1300f376f0ca7d0c28ccdf6c34d
BLAKE2b-256 c1dc72594048d340a33d97beb24c5ce7e8af36150d6269e18b60397737a93480

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3b4ab743db16179147bb9ae3aa925cf0ec82bc6844b032107ed6ca7c3247847d
MD5 e4aa5494e910c7aee7caa6dd3e2682c5
BLAKE2b-256 a54d8cad41c53101df4b08aef303bcf7ee8937e4a96794a93fbae14ae4f76943

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 31444b0718b2e235a57a36236e99fa0312196c407614591417779fae43c846e5
MD5 dcb1b779e3f1fe2daf6ce6848f0ba28c
BLAKE2b-256 0500181a7a5c81d627f3a439e362c6a55724d63d201267b5b2fd4fabe5cee02f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 ddec6d9a3cdea4107ba5c0c6b0c62840daf8350a3176d8b602ada479094d074b
MD5 279fac5987e5dad18871d06990e03bd9
BLAKE2b-256 321fcc1a4e04385d3f60cb3fbc8b242706b910c81a9c33c2686e4e2f1397c619

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3baab895b75501f36ce12b2d4adc4ce30d0205c4fe1e791e156302afaa614827
MD5 5c2ebc6b581f0aac9db4ec7feb9d7287
BLAKE2b-256 9335cce932787e0210a264117d886abd4d490fcec1505bbdbb1d1721bbb132ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 6a518abe2f515d83f07628bae85def7154b2eb9e94bb7f574056a182e9d0e8de
MD5 22e9dd2934656566d3d9e2e5dd47a2f5
BLAKE2b-256 055be7862e6e717f4af41134ad0222901a737b02bc4945f395337877ceaf3ff3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd2348363f19577db3debe837357f2e39de4ceaf7c9660c93acc72c92ceb57fa
MD5 85043a11b5578638e47e10f139a5ed23
BLAKE2b-256 e5d6f45491b2e867f21a09dc4cf1a9670c094ded4ed5a568191aff150f141dae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d2a2f7dc2768aeff366bdebe7f624145b55da5a9307c81477f063ef3edc0f315
MD5 31af7f1aa6a2ef2406c795b2f897aad5
BLAKE2b-256 cf91587c63d056109ad283a5b066fd80d3689dd3aa873ade33ca992d15f0747d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9af047773ecab8014560b8d6844a1887ea465b09130de5242462d9372fc0676e
MD5 2addcea094b62e9acb765ee735d3d395
BLAKE2b-256 5091c22c8af869ed58940f369da3405fef957840dfadebb924c5149224e9977c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 86d24a5bf9444d453f74f8e8af0500efe866aa60c456fcc09e9b405f6e2429c8
MD5 e476384f5fe3d6ad05071e9b04fefb74
BLAKE2b-256 ef07467852e6fab3c1f81c2db37e835315c2c7d6d95920bc91f656f8393316fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0f598fda22895cae04588fba211271d5eeae33ca7db8fa8611fcb68d3289d918
MD5 7b8f71e8511fd6c5b7c20bef7e997cf3
BLAKE2b-256 b67aead1e15c76a3e26c30ba7d8c77ba4e3b83333541804e1111f8958ae8b471

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6dad4f5407e10da52a1b06529090892325d7fa7f8081cf742308633696ba6bca
MD5 2703dc03f16257caf4fd12a491006852
BLAKE2b-256 2d7c7f7e16938413b8721bb4cdcbe3f65013b927e4216a41a9ffad9203320fd3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 72c65ad0d816668f6dc7ab973e714fe803dcb39ff9c332531c463edacfaab7a7
MD5 9ddc9afe4f3f759be91ef1882c09b41b
BLAKE2b-256 902fa08bd5e5dec6438cb7ee7e9b0ba65ba037075480c49678b6b887ae4b5e18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 3a37e48b027b4e468cefdf36d3971ab75687a67e429bffa3b969a8b7eec8cdad
MD5 9925c0d82a292a394fb65b36149db076
BLAKE2b-256 7860a8ad69d44368456bc48423fa5225efc08a68e9e6a004f69d2f203c70975b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ba7baf1f5883b90184455d48f1b6c9ce9cad4a8b5b7b6b40be12e0ee996e8a93
MD5 be4c5478240be3bbad58e5f509129817
BLAKE2b-256 824974eb9e207a9d64f6ae3e8de198a6fe1f8f0657eeba93183ca8a7061b5e9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7b8c82b7ae1a9da4db914058b97a42f3b9080317ef340ce06947de93f7277aeb
MD5 8cd3d4f4cf6b9290929383cc1252c9bb
BLAKE2b-256 80ca675ed05236eff26b42976e48db1d5157ef5bc20c25bac2a7da7908cb40ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for SQLAlchemy-1.4.0b1-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c0478114a2d53a46851f32b95237e68d42b611f73c5f1c3f86db5d3ce098a4dc
MD5 583d34f6df54f28977fdf5c8538d5c46
BLAKE2b-256 3d159ecc8d5f5f8f1b08fc13709090d8be4ee87fe9872d0be228d6af38375343

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