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

This version

1.4.6

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

Uploaded Source

Built Distributions

SQLAlchemy-1.4.6-cp39-cp39-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9 Windows x86-64

SQLAlchemy-1.4.6-cp39-cp39-win32.whl (1.5 MB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9

SQLAlchemy-1.4.6-cp39-cp39-macosx_10_14_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

SQLAlchemy-1.4.6-cp38-cp38-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

SQLAlchemy-1.4.6-cp38-cp38-win32.whl (1.5 MB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8

SQLAlchemy-1.4.6-cp38-cp38-macosx_10_14_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

SQLAlchemy-1.4.6-cp37-cp37m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

SQLAlchemy-1.4.6-cp37-cp37m-win32.whl (1.5 MB view details)

Uploaded CPython 3.7m Windows x86

SQLAlchemy-1.4.6-cp37-cp37m-manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7m

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

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

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

Uploaded CPython 3.7m

SQLAlchemy-1.4.6-cp37-cp37m-macosx_10_14_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

SQLAlchemy-1.4.6-cp36-cp36m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.6m Windows x86-64

SQLAlchemy-1.4.6-cp36-cp36m-win32.whl (1.5 MB view details)

Uploaded CPython 3.6m Windows x86

SQLAlchemy-1.4.6-cp36-cp36m-manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.6m

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

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

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

Uploaded CPython 3.6m

SQLAlchemy-1.4.6-cp36-cp36m-macosx_10_14_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

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

Uploaded CPython 2.7mu

SQLAlchemy-1.4.6-cp27-cp27m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 2.7m Windows x86-64

SQLAlchemy-1.4.6-cp27-cp27m-win32.whl (1.5 MB view details)

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

SQLAlchemy-1.4.6-cp27-cp27m-macosx_10_14_x86_64.whl (1.5 MB view details)

Uploaded CPython 2.7m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.6.tar.gz
  • Upload date:
  • Size: 7.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for SQLAlchemy-1.4.6.tar.gz
Algorithm Hash digest
SHA256 193c3ca465fbc68de071995a461ab535466f041089d372ee6a6f0aae7b9307e6
MD5 826b99d0abefce5a31db901a03437b53
BLAKE2b-256 9c85b6db302b7ab666bc68350ab4f1aba4c30cea66dc0b554de79a95ad411e12

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b093bd6efb49332021714bed5752e784a34ae6d6896ec56ffdc32cc83275a215
MD5 7074254c0d9a648384ae0f0e0684ef0d
BLAKE2b-256 bb153c7e2205c2a7c1f949a4a63686a6495793cfe540d5eb0d4c43f1f500074d

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.6-cp39-cp39-win32.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2713b338d9c54d2c3c7ff4f7786a40a5ca85013c8ccea00327b034d42598e22e
MD5 749741450710ac6b3d6590d2b45f4cb8
BLAKE2b-256 766a60f801e75f85c35e0bc00b35bd8bfc8a698363e791bc3ccde500adc6e798

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.6-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cadb58aeadd9916e79e8f99a49d0c0a9e61ae2b24469c2b304a0699e41a25e59
MD5 463242eff71b165f1bec499868a779da
BLAKE2b-256 9d4835e116c636042465a23e2c489bd49495d5a091dd96da644e328934d5256e

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.6-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2071ee6cd9390a9527a80ef03458fb58e0166bb299db2c62f9d688b6772d76a1
MD5 b9fc008bee41e73a4e061b69819e5701
BLAKE2b-256 f5ec3635188a7b5bae1b366392635cc780d924fc39b5f945aa5e10c363e77775

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.6-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.6-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.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 345c201324066b789804411f07eea750e9f29872be052eba221ce76add647d50
MD5 86a5223f61e0d120edd2239d421d57c8
BLAKE2b-256 49d9bc9e84d8daf69bf3868e71cb2960bc1b88ea52fc1843800a322e9491e7be

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.6-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.6-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.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 93f6fe67a76d7fa1cca3b9febb36e9f2dd76055230e2bfa317969532f34c03ab
MD5 331aa2a3e22c0b20339a1884ce455325
BLAKE2b-256 b32786ca912674f433abb2ab27604f9276ac85d491cb1b19acbb1d2395511660

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.6-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 4d71ee83441826fb48771e58cef51191500a87734b4acb6b698ca018479395bd
MD5 2ec5ea0f2052fd325cc02204d2524a8c
BLAKE2b-256 359428586192c5cf630deec0e43b29ee630d2b2af97043c0023ea1047c499876

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bdeb300bb9adc02f98957cd0cf0c38d641bdd435b0927e39870a772e0a750bc0
MD5 6535e6cdfe089eb561811ec4266e0967
BLAKE2b-256 6be27cae217bae618cee40e377e5a9de98f9e24f6c83137a2a9b20ca3cfe63d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 86a7321636f851c6e8009901c5d67e97d82b86ee8c6f28a476691c41c3d71a95
MD5 53e0c286445267480433291f07c08b8d
BLAKE2b-256 adfe3ba4d34c5d188f1cd99a56a7c584abcb0e12a892d205e063a33c43f0bc0c

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.6-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 360a771b538463053383fb6ff7aceffb595248d7059bb9e003bf70562a66510d
MD5 18ccb0811494e96f3528bb9292ee76b5
BLAKE2b-256 db290cd2aa9645a38b2cadd5d88176f377b37b0d68f10f6812005852579870c5

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.6-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d42b8e2bffdf9e01d66cf46472b938493b854ea790a0fbe2e2e42624fc253b33
MD5 04522ba62704c26ff442a4eb87cc1076
BLAKE2b-256 99ce9b9b1c8b84bf78cb7a6940f4ea651359a52f264ab48bc2e053eac20db849

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.6-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.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cc3c0d87b11ae1dd1ccbd6fc7875a290b3f73b771254180c2e7b19c2aec7379b
MD5 15e53c67f9d7269f8f1abc9821746e0a
BLAKE2b-256 aae9edccd8024b39bc9da5d5235640d7244d08d2bc29d7bd15652a84e8a4bd9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.6-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.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d7684e0598acfbfb5110bea482d8c5e94f52001d6d66b5558177f41f49fb5930
MD5 86268495abf60a11aea2440611d524ff
BLAKE2b-256 d92eef45a5d8006c97bd9f0f304c183dcc3f3b68072571210d69a20b359ba070

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 7d252dea33c1ee07b3d702fb4962963996ea40e5a2615dbe7646ccabd851ac76
MD5 41c399a6297cdd7df666c8cf2c87c26c
BLAKE2b-256 4fbacbb1586ea766f77147db134fcbd5f88ad918dd63161f103d2e77bce1037e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4387ebd5ae8bc2c716dbfc1ece769c867307eeecc192e72a4d2e7fa0fc092646
MD5 2e36fbbdd30cc080bb837b445d884af4
BLAKE2b-256 15f544a2939ac10b25fb76e91d3572d456ead1e1a6e7b8f99441956b253d571b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2a042c27b1a32a87f4cead53bcdd28999324992650896094368a595165b31d97
MD5 b26f9b3f4e2fae20a491648c7a836578
BLAKE2b-256 e422cd2488802a3879bdf4fbafdd06cb86e086d947b059228357ff35feb5617e

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.6-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c4af3aceeff6a0e2bd3657d8b25714a9f7c7c606e7ec52029284973094f84c1
MD5 95fe1dccf43cc68f55563828dcb2ce30
BLAKE2b-256 a5db384fe27a855ac8cafa2b4329995d67de6fcd49b8ad68e0fb55d7a1231418

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.6-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 013b659efe02f0f58e7f759602584899c921c178c6a972978f16460dcdd782d5
MD5 ec1a89e5b12b196753531effd02e5b58
BLAKE2b-256 bf7bedd7bc13a4d7ecdfb6892e83f0c2c08a7c2642d8ae89a608f6be23a057c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.6-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.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a687e552ab4ffedcf3ec3bd5256ab3e753b4f605b467e9fa39690b2dadb5f607
MD5 0591f00ade8a708329dc97dbc09a65c3
BLAKE2b-256 05649243258509b45f82e4031359215da7334356098372d6d484b63d72ec3f34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.6-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.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a76c10b467f7d385e4cffe2185d975336acf0dbf24ed702c46207df0fb64055e
MD5 b698100c19144d0ed20c8f0f594772e5
BLAKE2b-256 c2b12de637611a02723eaa040640a4d3a4c6c67a84fac399455603c6f3a590ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c719f0058951457a7761bb69c2e47781a9989ab4819b7a30b6b39141ad013a5f
MD5 344692e0a79eeed693fba77472915a80
BLAKE2b-256 48ff7faaa18b5806ffef14f102bb5d897efd2efe1dae5679ab4e7bbb846f211e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 21becd8b45ec70b703239cf915104e47889c2aad96d0f68f597b9b547cbfd787
MD5 8f49a47aec7c152558d54143f0d1b03d
BLAKE2b-256 1e39033a827713eec6ad8549c6ca024a5e5eefdaafd01b5cafdf97012d94fc1c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a69787f7fc87b84df7e2f27158476cdf39a79ebb95af1d6f696e474724af9ebe
MD5 4d9071264fd64b501565c7664a724591
BLAKE2b-256 909318354c1bff346f5ffee098f87a8116216ae4d508ea247e41a4377f936c15

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.6-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88d75ea6b4330a6f5596a49904f21762ff89ca763db065d63b815ad8c3d68952
MD5 75e2ff8bb874233317d02323cc5d6620
BLAKE2b-256 050ffcb04a3e4570e3f91bcbfb796aa37f70f84bfeb028a5d85155e41ed6fc41

See more details on using hashes here.

File details

Details for the file SQLAlchemy-1.4.6-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e65c1146f5b4151cc6e553d9847299c97f53640d94ba88b1c534e15cdc6ac38
MD5 edabf4ada224e791dd9b08cfd1a55108
BLAKE2b-256 2030d790afdd137c18b1885126fd794b513baea2ea12443388f1c9a5ee074548

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8a296bbf367867aee2ea8d5b391cb04fbdb3ca7277cd1649d9e8114620f3b090
MD5 f79967bd80393c7224c036e6a089be40
BLAKE2b-256 b22f58d9ff7f16dd68a75f11d67fae4bbde52717ca20c0c7602c7bbf3c484659

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 43fef20dd1024409375cc646a4b5afaffb62f6488e41588cde2a1ed2e9432b5b
MD5 f52825be2f5ab49e283c33571b746322
BLAKE2b-256 57d1234e52562b067a31d0f3696628dbd0b0ac9a84c9ddb7bfa3c70f88fc3961

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 933427a5474e014d01bac93224cd4e2bc7bbc7ce531d0bd7e55e4f940cc8ce0d
MD5 af34d28ac7c24a121585b5ae66d638b5
BLAKE2b-256 abb0c4dc8a0ae2558dd0a3d15dfd6c55f4920f6ffef628b4d2c9a0b0c3d31a70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 66467123c220689d55c6d51fdf88f7b0b62b8078823c5f6c0297ab47c22003d7
MD5 821ef08780d84c772e15607f87f09e5c
BLAKE2b-256 01a6b131145e7b45a45578dc05867333389e3c8b353c6f6790457c5ed193c9ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 e5267cd2e51ddefbe10bb182c36ba41cdaa51c83a0fdfa63ed8cbe89cbcf0f33
MD5 aa1c20660e175cb4a86ec82f82047286
BLAKE2b-256 7e10bc2a2fd0e938f63605eeedd037056733b7043f406073f2a56a9de4af92b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 4eeff8b12c7d22be4de98721bba5a042875f4365e9fd20dc3916eec474ccb81e
MD5 f18c2448bfe2b54af9f9cd8eb4861706
BLAKE2b-256 557038b48e2477498b640f0f359e22c0a23d6a86c479a3de631b121406c3975a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 534c71caa87c7fdb136ce5073fb42b732a4eb390946f503d8e1d7ce6a4a79100
MD5 edc357472526e47ffaeb7d9ad27b9711
BLAKE2b-256 68c15f889dac5ea570841eff05e80a42a0e8e027d044ff2d8db20c13bfc1eca2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.6-cp27-cp27m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for SQLAlchemy-1.4.6-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 432e98e6fe0d24e8181eb4177e59cba9f8831dcaf272a0d2de75bc8b933952a0
MD5 0246c8426355c4694d3aa00ce6fafe58
BLAKE2b-256 457cfcbdb73b383a809273666519da1584d59e3936e327630756ef28806a4ce0

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