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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

SQLAlchemy_mmeyer724-1.4.0b1-cp38-cp38-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.8 Windows x86-64

SQLAlchemy_mmeyer724-1.4.0b1-cp38-cp38-win32.whl (1.3 MB view details)

Uploaded CPython 3.8 Windows x86

SQLAlchemy_mmeyer724-1.4.0b1-cp38-cp38-manylinux2010_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

SQLAlchemy_mmeyer724-1.4.0b1-cp38-cp38-macosx_10_14_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

SQLAlchemy_mmeyer724-1.4.0b1-cp37-cp37m-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.7m Windows x86-64

SQLAlchemy_mmeyer724-1.4.0b1-cp37-cp37m-win32.whl (1.3 MB view details)

Uploaded CPython 3.7m Windows x86

SQLAlchemy_mmeyer724-1.4.0b1-cp37-cp37m-manylinux2010_x86_64.whl (1.4 MB view details)

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

SQLAlchemy_mmeyer724-1.4.0b1-cp37-cp37m-macosx_10_14_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

SQLAlchemy_mmeyer724-1.4.0b1-cp36-cp36m-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.6m Windows x86-64

SQLAlchemy_mmeyer724-1.4.0b1-cp36-cp36m-win32.whl (1.3 MB view details)

Uploaded CPython 3.6m Windows x86

SQLAlchemy_mmeyer724-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_mmeyer724-1.4.0b1-cp36-cp36m-macosx_10_14_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

SQLAlchemy_mmeyer724-1.4.0b1-cp35-cp35m-manylinux2010_x86_64.whl (1.4 MB view details)

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

SQLAlchemy_mmeyer724-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_mmeyer724-1.4.0b1-cp27-cp27m-win_amd64.whl (1.3 MB view details)

Uploaded CPython 2.7m Windows x86-64

SQLAlchemy_mmeyer724-1.4.0b1-cp27-cp27m-win32.whl (1.3 MB view details)

Uploaded CPython 2.7m Windows x86

SQLAlchemy_mmeyer724-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_mmeyer724-1.4.0b1-cp27-cp27m-macosx_10_14_x86_64.whl (1.3 MB view details)

Uploaded CPython 2.7m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: SQLAlchemy_mmeyer724-1.4.0b1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.3 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.47.0 CPython/3.8.3

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 aa730c341cd5ec12af25fb868fd5310de02c7193a10f92e250d8ec63ca2cc21b
MD5 2f34de6768ff07fcd03c2e24de39cfbd
BLAKE2b-256 a6dc7b00c5f0ec6fe7b8a30e489f9d6b73937d9255f79af2a07d5e38f1894c7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy_mmeyer724-1.4.0b1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.3 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.47.0 CPython/3.8.3

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 743470b6c811357f2bb29415dc827183e450377eda92828c8b9122e8cbd4c6b4
MD5 5fc8a24588e6bad864f2d66e56652b57
BLAKE2b-256 c377512d7dedf1c38423f31c366292efe8253c9571fc21058c881f86773b50c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy_mmeyer724-1.4.0b1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 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.47.0 CPython/3.8.3

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1c4fbf9458926bc8160a9107f04440d00934b07b0a4ff4403db5fee1e5548e5d
MD5 27e71f00657521cea500110fb0417c69
BLAKE2b-256 e31fc32fd53c8793b0bf8d39a43a4166862d9b099aa3bcdb6c6cef5495d00eff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 313deff7178cc4f48a22a372692a2d2536515dfc5fd791424aba478d53991c53
MD5 489f40fa2b91cacf92e2c121cc2b73ba
BLAKE2b-256 2afdec9ddbf9f4c45679e21bf49221eade834daee528b33b1999028dbbe3a7b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy_mmeyer724-1.4.0b1-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.3 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.47.0 CPython/3.8.3

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 33e5138065cc9d15f22eba84f45330d8f4007f08a7b8258c14337290d966b219
MD5 b964f531867f4d277d30b9be3a87f8c8
BLAKE2b-256 873fc90856e1555a1b043034001a9d24e8026e2f458ff15d57607ecc9962c859

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy_mmeyer724-1.4.0b1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.3 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.47.0 CPython/3.8.3

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 31d0a420a70f3fd38b89cb28833041b6218b0523e7246cca583eb1d0aa536c1f
MD5 ee767fe4abc145c747ee48301530248a
BLAKE2b-256 60f8134362febe2a2b70d839c4eeb0ec9a8c74515ec31145aa1839044175774c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy_mmeyer724-1.4.0b1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.3 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.47.0 CPython/3.8.3

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d3d4e746f0d587ce1a309e8b6619d26ea920f371bf0a54436cf48c0d6e118a68
MD5 26001ecc1c08316b96bc10546834e38a
BLAKE2b-256 951a7531528702c8a6daf4f1caa8a1439cfff5cc31a94cd894d6f5367584dc97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy_mmeyer724-1.4.0b1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 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.47.0 CPython/3.8.3

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 40b307a45599c9f90e5d0fe2e8903f5f08bbcc2242a4b598775a938b963e3526
MD5 c6850c238d503ea82ed77e5e979a8445
BLAKE2b-256 aa65532f8f1f2c2b7ee1b9d4ceb0fbc6461c0080482ea5973d4d6e8c65a77edd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1588303d4dc284f29b67f2240b5c10adcee47ec20ae8b8390eaad083fa98cd74
MD5 063ad1876fb2ed1aed39f3955d7cc728
BLAKE2b-256 fd489c2052329b7abf2397323bdf34fc5a6d35b7324ded18cbf96994517feecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 62755b7f853180f139daeaaf8f1954a69e1cdc3e38aa6303279ae4c100603cef
MD5 bb222e542b384bb11cb5ff15c31f6b13
BLAKE2b-256 50c124c317e6b9d7d193e09f89315c58b8ae3d95ad1db249fc8c027a85d5872f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy_mmeyer724-1.4.0b1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.3 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.47.0 CPython/3.8.3

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 98cd09cd434e7fd7e06b7e729da8ccfaf3a17625448f61767d50bfe18511ae03
MD5 1b8416606f0ef73a8d79f28a0b9c2e9c
BLAKE2b-256 1306b8a219ab9c4fdefb8a580dc7af7889ffd1aa8245c478ad30932050fa276f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy_mmeyer724-1.4.0b1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.3 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.47.0 CPython/3.8.3

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a1b978f6d4c2b95f0af68cb8a1596a7e87c8f029219c4e63b484a1d65564447e
MD5 baa7cec2ab63f1db39ad5d9aea653ce2
BLAKE2b-256 19055db7d397532ee22b33702d167c2c375579d11d6849248e959abb92a13339

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy_mmeyer724-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.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ad0f48cbd31ff65d3e16363dff6e7db18cc5adcb27ec80d44f9bb9c9baea1020
MD5 49fcde1d611f104389968f005317da06
BLAKE2b-256 547338899609d00351671ba7424d349e4ed3e868d0555ab6c5b4b0c3684c2631

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c8bfde4cd9737e2a2dffb271be3b20b03cf275dd8889903c1805d511c156d7c1
MD5 e55ea6d21c64832e546bf4c7ad73c71f
BLAKE2b-256 892fedefb64cd579099b27a82b8aa36e39c7318053432e4a1ad4460b50c6648a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c9b41d83f4d4ac423d00f1373b0f624d4dd314e447220a842b04cbdbb0f25a2a
MD5 170ebc46a8e658c0a9454fb126de6a24
BLAKE2b-256 37491961d3c3be0819afd671200472bf1b926eb1c5b227be5e356cb19b749046

See more details on using hashes here.

File details

Details for the file SQLAlchemy_mmeyer724-1.4.0b1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy_mmeyer724-1.4.0b1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 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.47.0 CPython/3.8.3

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5578fd684d83943acc8fc7662823fe6407aac4c70c21dececece64b0d2e092f4
MD5 33c7ebed969bdf7aa13ade3cf450c7ea
BLAKE2b-256 984d6c651e1766d1ab3b1d5c48d2a02a49ed75e85cb8da57338c4d29a2a03fdd

See more details on using hashes here.

File details

Details for the file SQLAlchemy_mmeyer724-1.4.0b1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e04d8523b0ee70cf9cf7c011e5eef3dcfcef436ad5d22db8292ace04bb36297b
MD5 c70af23247f282853076e7a8667b18eb
BLAKE2b-256 c6b5078aaeaaac67d8d6f290898772b23c07dcb8b2d0909dd8dac0bbbee4bcd6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy_mmeyer724-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.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 551d6aa2d4d21711038647a061cecfd5777aaae84f097dd4ca947f6544e56ae3
MD5 83b314e7cd0d6c7c824746a9c9d81d12
BLAKE2b-256 4c3f1e468936d7d7580ae2cedbda9a3d7ba71b58dcd7e3224add9912fedf0691

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9ccbf72c8fd70fac4d6ddb519d6d24331ba772307ae5b38d30c6a9008e60a514
MD5 5d52d74b28388390de1926bbee5897bb
BLAKE2b-256 effff3d3415e8ee947c7f937d79be54136042e87354f48fe74f48b544212b8d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy_mmeyer724-1.4.0b1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 1.3 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.47.0 CPython/3.8.3

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 371fef4899f6e3e241a8a7acbf6cf2e120b0e29a871b4d4e0e883f33239dfb80
MD5 cb7d959de89419a95ba20f08584ef2db
BLAKE2b-256 7a6d41058af0c693a77f828d319b4d37a928db31da9e72f2d2bd0d007f8839c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy_mmeyer724-1.4.0b1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 1.3 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.47.0 CPython/3.8.3

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 cfd4d0c1fe0abb3873ca51b8a3a055a56fe584081a9e3b6eee1c9ca01876ad4c
MD5 7b0e15350bb68e66e2f95a1012f52621
BLAKE2b-256 39c381323451341aa973062880215e8ae2c92ed6e52ee1e29922b1823bef8e59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy_mmeyer724-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.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1781d55995275ac8d2dc388ca00777f82df880f0c4b796d63af6a0d9a022ee58
MD5 584fff033bbf9ee76927ee66bafb55bd
BLAKE2b-256 ccd5e325fca4266fffa470b28d731ca190348444e33f4134f20098af50a7c975

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 791feb087647cbd8b2ef200490158d808a920b3fa6862dc504a0b54e5178518a
MD5 d88733edf5a172f1a71c77dc3c237560
BLAKE2b-256 e9fe379bc1f5ca9805d8287f2e8a265b213572fcf5bd03e7abe175e525e6ade8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy_mmeyer724-1.4.0b1-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 6c80b16bfa2f491f8b61855df84873df9170cf00636e789289c98572d74c0daf
MD5 90e566303684569136673e25947f4c4b
BLAKE2b-256 aa7c76ae9fcbfb454587d375d1d92556deab316cf6112fcf7ff0642384eca000

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