Skip to main content

Database Abstraction Library

Project description

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

Uploaded Source

Built Distributions

SQLAlchemy-1.3.18-cp38-cp38-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.8 Windows x86-64

SQLAlchemy-1.3.18-cp38-cp38-win32.whl (1.2 MB view details)

Uploaded CPython 3.8 Windows x86

SQLAlchemy-1.3.18-cp38-cp38-manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

SQLAlchemy-1.3.18-cp38-cp38-manylinux1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8

SQLAlchemy-1.3.18-cp38-cp38-macosx_10_14_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

SQLAlchemy-1.3.18-cp37-cp37m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.7m Windows x86-64

SQLAlchemy-1.3.18-cp37-cp37m-win32.whl (1.2 MB view details)

Uploaded CPython 3.7m Windows x86

SQLAlchemy-1.3.18-cp37-cp37m-manylinux2010_x86_64.whl (1.3 MB view details)

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

SQLAlchemy-1.3.18-cp37-cp37m-manylinux1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m

SQLAlchemy-1.3.18-cp37-cp37m-macosx_10_14_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

SQLAlchemy-1.3.18-cp36-cp36m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.6m Windows x86-64

SQLAlchemy-1.3.18-cp36-cp36m-win32.whl (1.2 MB view details)

Uploaded CPython 3.6m Windows x86

SQLAlchemy-1.3.18-cp36-cp36m-manylinux2010_x86_64.whl (1.2 MB view details)

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

SQLAlchemy-1.3.18-cp36-cp36m-manylinux1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6m

SQLAlchemy-1.3.18-cp36-cp36m-macosx_10_14_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

SQLAlchemy-1.3.18-cp35-cp35m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.5m Windows x86-64

SQLAlchemy-1.3.18-cp35-cp35m-win32.whl (1.2 MB view details)

Uploaded CPython 3.5m Windows x86

SQLAlchemy-1.3.18-cp35-cp35m-manylinux2010_x86_64.whl (1.2 MB view details)

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

SQLAlchemy-1.3.18-cp35-cp35m-manylinux1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.5m

SQLAlchemy-1.3.18-cp35-cp35m-macosx_10_14_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.5m macOS 10.14+ x86-64

SQLAlchemy-1.3.18-cp27-cp27mu-manylinux2010_x86_64.whl (1.2 MB view details)

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

SQLAlchemy-1.3.18-cp27-cp27mu-manylinux1_x86_64.whl (1.2 MB view details)

Uploaded CPython 2.7mu

SQLAlchemy-1.3.18-cp27-cp27m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 2.7m Windows x86-64

SQLAlchemy-1.3.18-cp27-cp27m-win32.whl (1.2 MB view details)

Uploaded CPython 2.7m Windows x86

SQLAlchemy-1.3.18-cp27-cp27m-manylinux2010_x86_64.whl (1.2 MB view details)

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

SQLAlchemy-1.3.18-cp27-cp27m-manylinux1_x86_64.whl (1.2 MB view details)

Uploaded CPython 2.7m

SQLAlchemy-1.3.18-cp27-cp27m-macosx_10_14_x86_64.whl (1.2 MB view details)

Uploaded CPython 2.7m macOS 10.14+ x86-64

File details

Details for the file SQLAlchemy-1.3.18.tar.gz.

File metadata

  • Download URL: SQLAlchemy-1.3.18.tar.gz
  • Upload date:
  • Size: 6.0 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.3.18.tar.gz
Algorithm Hash digest
SHA256 da2fb75f64792c1fc64c82313a00c728a7c301efe6a60b7a9fe35b16b4368ce7
MD5 96e085d318297b1ad36ef2685f54287a
BLAKE2b-256 0280c83986fceeed04f7d42e3fd8a67e94e87b56afb223ee653e8a4a8986361e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8619b86cb68b185a778635be5b3e6018623c0761dde4df2f112896424aa27bd8
MD5 3932ea7d9fd1f8609d8e0aa9e2f31e2e
BLAKE2b-256 1f69e0e1c35db968b0b5955d1ee57dbff763344065e6f08132c39a11d9760eb0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 109581ccc8915001e8037b73c29590e78ce74be49ca0a3630a23831f9e3ed6c7
MD5 b2e26809bcc8718d3d6392548b29a11f
BLAKE2b-256 19b770fab0b16fbfac4ec0f53c1c56595f86a7522878ce5dbc479878603332a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d05c4adae06bd0c7f696ae3ec8d993ed8ffcc4e11a76b1b35a5af8a099bd2284
MD5 9f8a3e8f12ac7caff49cb4299ea0de3d
BLAKE2b-256 ebb7c8b2578b170c487397b00d47d46087f98928eaa4a53fffd756969f4d372d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 512a85c3c8c3995cc91af3e90f38f460da5d3cade8dc3a229c8e0879037547c9
MD5 9579dbf28c166690ed53f4e6f88a1ddf
BLAKE2b-256 74f836010f5fddcb09c55dc98ee48ec1f0390792a25b71cafa690514a9fe31ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c26f95e7609b821b5f08a72dab929baa0d685406b953efd7c89423a511d5c413
MD5 2246dd21b81a7ffe5ba2f589ad09c876
BLAKE2b-256 3904e4ff106c125f1dd9140db2c631e027477ea3199f0c17f3aa52be14f1a6f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 16593fd748944726540cd20f7e83afec816c2ac96b082e26ae226e8f7e9688cf
MD5 4da147091e33e3690da82085316b4824
BLAKE2b-256 7577b7135fa41e60d9bc015ae020060e54408b61de2f2aaf47994e19bf935443

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 0942a3a0df3f6131580eddd26d99071b48cfe5aaf3eab2783076fbc5a1c1882e
MD5 e9b962e07f10c771b33d9110c4addcc6
BLAKE2b-256 fb320b94087b5e5891d91da6aed140ab7a5ae1315e6b996e541e503c74a48d13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d98bc827a1293ae767c8f2f18be3bb5151fd37ddcd7da2a5f9581baeeb7a3fa1
MD5 52cad587d2e755810dd33c40a142af96
BLAKE2b-256 7006b636d40b92ee541f61980304f4b04358cc990ed21017b08c3f65bf0bc29c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 50c4ee32f0e1581828843267d8de35c3298e86ceecd5e9017dc45788be70a864
MD5 50c10ae689629fc9e4ba1d764a2a6d75
BLAKE2b-256 0b1e2ecb43005ea73c650687071165901cc5b4dc966ede82b9fada0dc0a01e79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 716754d0b5490bdcf68e1e4925edc02ac07209883314ad01a137642ddb2056f1
MD5 007ac7a4c50ab2664aa4f77696ee9a81
BLAKE2b-256 471dc3bfc768e9588662309f7b9a85be3284349f1b071a4eb261c0010080aeec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 89494df7f93b1836cae210c42864b292f9b31eeabca4810193761990dc689cce
MD5 8a9f3160ac8face210a6b13dc6ac8ba9
BLAKE2b-256 bccbf914d7c45014e214dc93132232b11637d78ac1cf60a0d773259049fdb06b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e4624d7edb2576cd72bb83636cd71c8ce544d8e272f308bd80885056972ca299
MD5 198a763b618b165a1184c5a5442a0524
BLAKE2b-256 46bba73aa7216b57dd96652d31534d0f0c35d926e9b66af66b7b37e01f001916

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 87fad64529cde4f1914a5b9c383628e1a8f9e3930304c09cf22c2ae118a1280e
MD5 a1b19de97bade6ea93db09356e5fa466
BLAKE2b-256 fa15d2bae12be77a6c9cde1d183f87216a339e6e8abc0ba4474a0057212574bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6ac2558631a81b85e7fb7a44e5035347938b0a73f5fdc27a8566777d0792a6a4
MD5 d916d991da9392f19fc7961df2b86820
BLAKE2b-256 7f84263ba21a9f2725a1b7236823bd732d80e23a4d79b2b121060b3ce039fd7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e89e0d9e106f8a9180a4ca92a6adde60c58b1b0299e1b43bd5e0312f535fbf33
MD5 b3e0dd37279656b1f045cba1d8d33980
BLAKE2b-256 d9ea9ba6c74dc6165b75a6f0b3a91cb6c666d5a08651bf75b6f588da8536c424

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.3.18-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 8fd452dc3d49b3cc54483e033de6c006c304432e6f84b74d7b2c68afa2569ae5
MD5 f0323e8ea095a9f38c74d4d4f662d3bc
BLAKE2b-256 df35047c878c05af0338d42cfed3e8b46f3c5092f15f42013bcf8bc4011f6327

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.3.18-cp35-cp35m-win32.whl.

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 cbe1324ef52ff26ccde2cb84b8593c8bf930069dfc06c1e616f1bfd4e47f48a3
MD5 60e0c60e8e8abfc73e055a7dec3ee2d2
BLAKE2b-256 cef9a9cd1b1849465be13eefbe46176e49ec79ac0287ab37b1da82aff74aaf11

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.3.18-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 427273b08efc16a85aa2b39892817e78e3ed074fcb89b2a51c4979bae7e7ba98
MD5 6db44c8fc77bf6b4f33bb2530add328b
BLAKE2b-256 04faf1027058aac9d5e92fd4b56fc97027b9d46e2bcda4bdf62b9bc26f7a97ec

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.3.18-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 736d41cfebedecc6f159fc4ac0769dc89528a989471dc1d378ba07d29a60ba1c
MD5 6975ca306f18ca0bdc96b0da4ddc778d
BLAKE2b-256 8ab16c8724f81c8c991ea74979090bd3ee09455f66709efc761f2f6e065c2b7d

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.3.18-cp35-cp35m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp35-cp35m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.5m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp35-cp35m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 fc728ece3d5c772c196fd338a99798e7efac7a04f9cb6416299a3638ee9a94cd
MD5 ddcfc21fea710f694d5e679ea22318da
BLAKE2b-256 7c76340a802d76c0dae3706262cf17623e2ca0074e35abd3c1e34b88e0a36fcc

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.3.18-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 621f58cd921cd71ba6215c42954ffaa8a918eecd8c535d97befa1a8acad986dd
MD5 085416ed63ff3dd15a167ac0b8fcf454
BLAKE2b-256 5cafe6776853e74cb10896adb660c3a4b834c20aac491ebd14424a117ea9eebd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 57aa843b783179ab72e863512e14bdcba186641daf69e4e3a5761d705dcc35b1
MD5 cec84836e42fe3cabbc6ba5e43120ae8
BLAKE2b-256 0863756d68db8cfe002064989eb4b07130b6153a647503a3e8404bcb8462fa7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 adad60eea2c4c2a1875eb6305a0b6e61a83163f8e233586a4d6a55221ef984fe
MD5 b35d698c1e44e9e8f151f53089640cd7
BLAKE2b-256 0b3917a4be61dc74dbb31bafb3fdfe4d4dbcf815bc7669755eee1ea302a7a4e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 8cac7bb373a5f1423e28de3fd5fc8063b9c8ffe8957dc1b1a59cb90453db6da1
MD5 add6c025b35370d7db9c408abe30665b
BLAKE2b-256 40c67948a0d7e4b289ba8cf11d0d13ef4b822e2eaf3f9d6315762938f4b1ee3d

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.3.18-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f57be5673e12763dd400fea568608700a63ce1c6bd5bdbc3cc3a2c5fdb045274
MD5 8c83fbcbfc51ed6cb160e43da8cd17f6
BLAKE2b-256 7d4c1f43467aae0f97b97e7baf5dfab3ff646c01f1780e16bff5e96b3e9537eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0ec575db1b54909750332c2e335c2bb11257883914a03bc5a3306a4488ecc772
MD5 5222acab6dfd25936aa3e38ca4a4e77f
BLAKE2b-256 7b4740ccf9e3eb050972d32f1958e2cd86d39b00bd8b8dd25961881b5c77f13a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.18-cp27-cp27m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 2.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for SQLAlchemy-1.3.18-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f11c2437fb5f812d020932119ba02d9e2bc29a6eca01a055233a8b449e3e1e7d
MD5 3fb41a82ac0aa83b798f8f58d12647b1
BLAKE2b-256 6fbc05c39bd58d1119f5d97aac8109adb97d60f0c53caafc709d3fcd0b8e6559

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