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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8

SQLAlchemy-1.3.17-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.17-cp37-cp37m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

SQLAlchemy-1.3.17-cp37-cp37m-manylinux2010_x86_64.whl (1.2 MB view details)

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

SQLAlchemy-1.3.17-cp37-cp37m-manylinux1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7m

SQLAlchemy-1.3.17-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.17-cp36-cp36m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m

SQLAlchemy-1.3.17-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.17-cp35-cp35m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m

SQLAlchemy-1.3.17-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.17-cp27-cp27mu-manylinux2010_x86_64.whl (1.2 MB view details)

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

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m

SQLAlchemy-1.3.17-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.17.tar.gz.

File metadata

  • Download URL: SQLAlchemy-1.3.17.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/43.0.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.6

File hashes

Hashes for SQLAlchemy-1.3.17.tar.gz
Algorithm Hash digest
SHA256 156a27548ba4e1fed944ff9fcdc150633e61d350d673ae7baaf6c25c04ac1f71
MD5 478214152b9293bf5652815d7312c890
BLAKE2b-256 84f45a61726869da51f37f643ea92bfa440e32eb182bdc1a1c7cfc9504930a95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ed375a79f06cad285166e5be74745df1ed6845c5624aafadec4b7a29c25866ef
MD5 4b834c7042eb5addcbc068ae6454e683
BLAKE2b-256 5544d8f8ab8e03818fa6141ca33a89475c60cf085a78d047302bd8ac75a76e45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ce6c3d18b2a8ce364013d47b9cad71db815df31d55918403f8db7d890c9d07ae
MD5 f559279b83aed07483d752c6aebbed76
BLAKE2b-256 0ab10a5446f6bce094da282edfa1ab4fbebbcecefc6cb6142483fee2f3b0f853

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b7878e59ec31f12d54b3797689402ee3b5cfcb5598f2ebf26491732758751908
MD5 63956ebf40be6fd57386d2257e38bd9d
BLAKE2b-256 512e617f7af4f60beadd56f0fd621e9e3c0026cc553ca18aae45033e3a8c0bb1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8a0e0cd21da047ea10267c37caf12add400a92f0620c8bc09e4a6531a765d6d7
MD5 8347a4333111e7c5a9851e047723b807
BLAKE2b-256 05ca4c3ccb306fdec0e105a84c7d156e5bdd9c86a86923b05fd47877cddc62ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 65eb3b03229f684af0cf0ad3bcc771970c1260a82a791a8d07bffb63d8c95bcc
MD5 03145326ec457f19b63a8ce299415cf2
BLAKE2b-256 a4d08ce0ddfe6100a70c912e961027dfd25c0771f7620f4a92dbdd7821a27cd5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9cb1819008f0225a7c066cac8bb0cf90847b2c4a6eb9ebb7431dbd00c56c06c5
MD5 77becf40ee318fdb7c0c129bf67a4053
BLAKE2b-256 1e60d0c4936f421ee8c4f9bfd310905165ad6ccea06355982cc59d3de4e55f45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ce1ddaadee913543ff0154021d31b134551f63428065168e756d90bdc4c686f5
MD5 21d6713e2372ad34eed85a3fc29e5634
BLAKE2b-256 3f702aaa150e89d032fba03a10210a72f66c0a6f2685623116cbf6656275417b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f35248f7e0d63b234a109dd72fbfb4b5cb6cb6840b221d0df0ecbf54ab087654
MD5 9ad1c04d08ff3cb40bffc373b9a14888
BLAKE2b-256 5c8d81d91c13e7f358e8c2b84730d5c09aec1dbbcf190e5b64c41cc5c67dfa4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e8aa395482728de8bdcca9cc0faf3765ab483e81e01923aaa736b42f0294f570
MD5 51f53d11de0ea191fb1c4401f2f757b0
BLAKE2b-256 68dc78aacd269a5d1d3fa595143cc48901642ad3b2fa5d560c4e1cfac7509376

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 2a12f8be25b9ea3d1d5b165202181f2b7da4b3395289000284e5bb86154ce87c
MD5 178089daf538b3d95e1c0400abb704ff
BLAKE2b-256 b99f326aaeda67ccbc9765551da7f9359f1bc5b33ecd3552b0c47233f94b801f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 128bc917ed20d78143a45024455ff0aed7d3b96772eba13d5dbaf9cc57e5c41b
MD5 37ee823cd608bf01c5523a2ede473925
BLAKE2b-256 f565374a5084cb867e5adba7b55e90725fdc6391ac65d6bea821bca00c7add87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 f502ef245c492b391e0e23e94cba030ab91722dcc56963c85bfd7f3441ea2bbe
MD5 930d428b18f3b0e61840414b3371dd99
BLAKE2b-256 acb1e9484a8bffebba0a0dc72d7a126db11c9b6ce572af6a66d37821a687d112

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a9030cd30caf848a13a192c5e45367e3c6f363726569a56e75dc1151ee26d859
MD5 1fdc5a31a665ee2607f04d9eb726f5c6
BLAKE2b-256 274a76ecb7c4e482c9cb3dddb029021c73ce517542ef9a0b92e6c38ec527827e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 31c043d5211aa0e0773821fcc318eb5cbe2ec916dfbc4c6eea0c5188971988eb
MD5 7f73d12cf48744b2d0da3a7438611791
BLAKE2b-256 b3f5c929eeb441efcb04eb7c5b6461500427e5dfab9bf980da165bc5f85cf659

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 27e2efc8f77661c9af2681755974205e7462f1ae126f498f4fe12a8b24761d15
MD5 60af59870fc0b6dc84f2d84440b55547
BLAKE2b-256 fa96ece9eebce33e0033f73e40070b8662b740f6fe87c27256c6a2a2d3b40c8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 6cd157ce74a911325e164441ff2d9b4e244659a25b3146310518d83202f15f7a
MD5 a22fc255b2e246abd2d67b1694c19bfc
BLAKE2b-256 2715a5c898032a348429916d893a88da91a910e9668851fb8f8faf26b21e6bf5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 a87d496884f40c94c85a647c385f4fd5887941d2609f71043e2b73f2436d9c65
MD5 514c3f0738f2f7ce3056f0a7123823c0
BLAKE2b-256 3f250fdd40f70bddd470f613062f413250a5330c78bf99b0c71dddef3a221cfb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a9e75e49a0f1583eee0ce93270232b8e7bb4b1edc89cc70b07600d525aef4f43
MD5 f907ad48f490de2320d351ec90adda57
BLAKE2b-256 c4411ff2d8ddfa199fe9b3055c634a2e8f51ddf564b293ebb44250620b378a8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8d01e949a5d22e5c4800d59b50617c56125fc187fbeb8fa423e99858546de616
MD5 e51ebebf8efe378b72efab07cfc67a62
BLAKE2b-256 6fd6d5930f25fcb2bd74f11c43b0ed02263b9128f794568a80cf02f8ef8057fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp35-cp35m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 eb4fcf7105bf071c71068c6eee47499ab8d4b8f5a11fc35147c934f0faa60f23
MD5 1ea3d49614eaef3a55e7b1ad5ffbdedc
BLAKE2b-256 15f927a3b865bcb927d6fa4ef2206f813bb7bca9aa132836731459d4de0b4353

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 703c002277f0fbc3c04d0ae4989a174753a7554b2963c584ce2ec0cddcf2bc53
MD5 7405c3be6fd1b65cca7f5607af89afe0
BLAKE2b-256 f00bf5b94ef7de9c6b548fa6f4940c3a9f5e2696536f39a70ab9d8b58e313ff9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 869bbb637de58ab0a912b7f20e9192132f9fbc47fc6b5111cd1e0f6cdf5cf9b0
MD5 55c54274430e9f82b0ed36bba26c1c01
BLAKE2b-256 5b8701f83018c7c62cf76174d49de9b4db5d53b1bb3d0e78f32fe524a684bd70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 925b4fe5e7c03ed76912b75a9a41dfd682d59c0be43bce88d3b27f7f5ba028fb
MD5 297ff22cb7f94714fe9d5bee4dad7b8a
BLAKE2b-256 f8bf6c248ab53c9e59e9b04ca701df1d1d9dd6c719966cb3e9925bc1112290d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 e4e2664232005bd306f878b0f167a31f944a07c4de0152c444f8c61bbe3cfb38
MD5 f83070ad9bc37c39fde96bb6e72644f2
BLAKE2b-256 a00d971e889ee13b0b7ea34a6a388925846937ea18acce24c7e12ad8b18b9ee3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ce2646e4c0807f3461be0653502bb48c6e91a5171d6e450367082c79e12868bf
MD5 41af20da3a5f180bab70bd44bf494bf6
BLAKE2b-256 83e1c2dc18965aa5f0577f3eee2b316f3ce935b0e8fc6be2320f0b5c467fb106

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b50f45d0e82b4562f59f0e0ca511f65e412f2a97d790eea5f60e34e5f1aabc9a
MD5 b4e9adda6b7ceda87d708c313e72a27c
BLAKE2b-256 2a9377844bff2cf65104dbff834dbce69ee5867b0fe3b76e0355227404f7e7fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.3.17-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.8.2

File hashes

Hashes for SQLAlchemy-1.3.17-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 fe01bac7226499aedf472c62fa3b85b2c619365f3f14dd222ffe4f3aa91e5f98
MD5 93fa6be87b0de6d1c03549d3b4fc717d
BLAKE2b-256 ae3706959557d145b8162eeac47a28f3ef6ec67b560c6fc96c7ed0140a4e07a9

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