Skip to main content

Database Abstraction Library

Project description

PyPI PyPI - Python Version PyPI - Downloads

The Python SQL Toolkit and Object Relational Mapper

Introduction

SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL. SQLAlchemy provides a full suite of well known enterprise-level persistence patterns, designed for efficient and high-performing database access, adapted into a simple and Pythonic domain language.

Major SQLAlchemy features include:

  • An industrial strength ORM, built from the core on the identity map, unit of work, and data mapper patterns. These patterns allow transparent persistence of objects using a declarative configuration system. Domain models can be constructed and manipulated naturally, and changes are synchronized with the current transaction automatically.

  • A relationally-oriented query system, exposing the full range of SQL’s capabilities explicitly, including joins, subqueries, correlation, and most everything else, in terms of the object model. Writing queries with the ORM uses the same techniques of relational composition you use when writing SQL. While you can drop into literal SQL at any time, it’s virtually never needed.

  • A comprehensive and flexible system of eager loading for related collections and objects. Collections are cached within a session, and can be loaded on individual access, all at once using joins, or by query per collection across the full result set.

  • A Core SQL construction system and DBAPI interaction layer. The SQLAlchemy Core is separate from the ORM and is a full database abstraction layer in its own right, and includes an extensible Python-based SQL expression language, schema metadata, connection pooling, type coercion, and custom types.

  • All primary and foreign key constraints are assumed to be composite and natural. Surrogate integer primary keys are of course still the norm, but SQLAlchemy never assumes or hardcodes to this model.

  • Database introspection and generation. Database schemas can be “reflected” in one step into Python structures representing database metadata; those same structures can then generate CREATE statements right back out - all within the Core, independent of the ORM.

SQLAlchemy’s philosophy:

  • SQL databases behave less and less like object collections the more size and performance start to matter; object collections behave less and less like tables and rows the more abstraction starts to matter. SQLAlchemy aims to accommodate both of these principles.

  • An ORM doesn’t need to hide the “R”. A relational database provides rich, set-based functionality that should be fully exposed. SQLAlchemy’s ORM provides an open-ended set of patterns that allow a developer to construct a custom mediation layer between a domain model and a relational schema, turning the so-called “object relational impedance” issue into a distant memory.

  • The developer, in all cases, makes all decisions regarding the design, structure, and naming conventions of both the object model as well as the relational schema. SQLAlchemy only provides the means to automate the execution of these decisions.

  • With SQLAlchemy, there’s no such thing as “the ORM generated a bad query” - you retain full control over the structure of queries, including how joins are organized, how subqueries and correlation is used, what columns are requested. Everything SQLAlchemy does is ultimately the result of a developer- initiated decision.

  • Don’t use an ORM if the problem doesn’t need one. SQLAlchemy consists of a Core and separate ORM component. The Core offers a full SQL expression language that allows Pythonic construction of SQL constructs that render directly to SQL strings for a target database, returning result sets that are essentially enhanced DBAPI cursors.

  • Transactions should be the norm. With SQLAlchemy’s ORM, nothing goes to permanent storage until commit() is called. SQLAlchemy encourages applications to create a consistent means of delineating the start and end of a series of operations.

  • Never render a literal value in a SQL statement. Bound parameters are used to the greatest degree possible, allowing query optimizers to cache query plans effectively and making SQL injection attacks a non-issue.

Documentation

Latest documentation is at:

http://www.sqlalchemy.org/docs/

Installation / Requirements

Full documentation for installation is at Installation.

Getting Help / Development / Bug reporting

Please refer to the SQLAlchemy Community Guide.

Code of Conduct

Above all, SQLAlchemy places great emphasis on polite, thoughtful, and constructive communication between users and developers. Please see our current Code of Conduct at Code of Conduct.

License

SQLAlchemy is distributed under the MIT license.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

SQLAlchemy-1.4.0b3.tar.gz (7.4 MB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9

SQLAlchemy-1.4.0b3-cp39-cp39-macosx_10_14_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8

SQLAlchemy-1.4.0b3-cp38-cp38-macosx_10_14_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m

SQLAlchemy-1.4.0b3-cp37-cp37m-macosx_10_14_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m

SQLAlchemy-1.4.0b3-cp36-cp36m-macosx_10_14_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

SQLAlchemy-1.4.0b3-cp27-cp27m-macosx_10_14_x86_64.whl (1.4 MB view details)

Uploaded CPython 2.7m macOS 10.14+ x86-64

File details

Details for the file SQLAlchemy-1.4.0b3.tar.gz.

File metadata

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

File hashes

Hashes for SQLAlchemy-1.4.0b3.tar.gz
Algorithm Hash digest
SHA256 e6b43b28d5d5cbf271ea6468c387b4c0a786bfd1d5f580be387b5b3e4355a7ca
MD5 e05b9c062787e84c13c7617fcfea64e1
BLAKE2b-256 ffa783a04274444f1578e645e47283b7d7e132baef360ffb32811e33d458a739

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 defbaf1b2cbac118a88a6379d435b1d953df8af3d4bc46c1c73bb6cd81e88728
MD5 c8a609ab5460061d56a4493273fc212e
BLAKE2b-256 d6fd45484eba2c66dea074f3474ec80572527e83a65a614a10a68ea043653ab3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 61c3f81d4bdf3a8cb68ba0e3e0d407448cc709e38a2d15e8087ce4a69246a0e3
MD5 9a0b533d3a14f6143409beb8fc094882
BLAKE2b-256 d69de8df2ddd6bb45442ce8b6b898640c34b7ba0fd2d68a9329f42b4031ae2af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53988d51bafa98602394cc9a9b71400ac43ea000661387fe5446928ca50dfc2c
MD5 166a83a363c69adfa03063061bb6a505
BLAKE2b-256 f6c445f638cc93ba3f1b5e216f22ad1f79789d35953c6cd77224859726c20e28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2bcac2674c8214da6ee034cf310f9c63192536b6dd42adad7972c43ae56f483e
MD5 3702fe73c8b7c773849a385696deb476
BLAKE2b-256 6ea222fc8f6ed706791e4d8e89ee82c06784b6cd2858925af8b990d9b951120d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fc00578bdf373b339e186fc0e9bc2692d8e03d25e785be8f24475b0833e9a055
MD5 6862aaeb7b134673d30f35803c5faf52
BLAKE2b-256 ed913e8f3dd9fb8accbee52f3d44c9bdcc7cfbab636d5fcfa65cbd23a8a27601

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 9e12ce96e22818fda7157d2b926084178f478df7cc4d3abb8cebae031c7076ec
MD5 49e1fb652e875d0959c5d1cfc32d46ae
BLAKE2b-256 8fbb6e93c43f063b833a056b7a3230f3030b0cbcb32dcceebefa055c6e86249a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d34098841a62bf679da480bce711fdebe6ebcf04e951b4d83362100ad2f7e0bf
MD5 2758ed1ea43d0e551f8307eb01f1f99c
BLAKE2b-256 22afe9a38c6b0f24409fbb3660367198e9558fd9c1cbc1358b7984556f83411a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 008bd2e4691ea7a5eef674747c8a720531699f41fdd20fcf996bdaaa1f7d02e1
MD5 d1cff4f6b7eecdd58fc5029a95b72d73
BLAKE2b-256 65cb3f0d6695c35e74c7b5b4af41789068b1eca88113586132aefba9e725c435

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2754f5e82e7a61b3600dc1b5dc7b7a7229acc2cda3f028f29ba569f9a9b601b
MD5 21687be710bc72fff5be43d17b8f5094
BLAKE2b-256 75d0dc22648ead5d249a0dbbb7760ae7f5e3256b63fcf97d14030cb7d4602b69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f2de1336b228f227e36fb9549756dbb0791beadd36fa74b8bc2aa8db8c7e36b9
MD5 3def2c347f121f947ab944743bfbf05a
BLAKE2b-256 71efa513b4b17f815ca60789fd539da48a3d6d21e08d87c1cb26c87c9bf990e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3d945e870ff405856331fd7f36b43562946271a1c744d8c062597552f864e2eb
MD5 49c7a59bf3de3a6e8dabfc338b971c35
BLAKE2b-256 73b3ca52c39c27a328c33d076367bf1dba5be9075fc94db164c50b6dc94db825

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e2223e8ce2e079a8022915c568cfff4eb31235139db49b4eb5cb1db6b4ecf656
MD5 a2b6dfd7e41a67ee4b700dce7c69326d
BLAKE2b-256 963e62bbf36b305dff456af3b5795ec13b71af502501e2adc386d6afbdc4fba7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 aafc24c63503e3df845fc4d0bbc2757a4f11c725410637bb4f8b0aced319dba7
MD5 061b62f10112e67241464478aceb3497
BLAKE2b-256 e3e074f72a396bb9deac576522b25a44a37002a97eb22c25c3bb7c4baa5239c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a1f4213790f5bd5c3b4dcedad248d982d540d7671a6bb454c6271cb46bb3d665
MD5 f7e230cd449e23e2f5716d2cce661159
BLAKE2b-256 ecb20400248fc1eb589d5421dad82228e18a5bda3af5086bfbd93d1453f5658f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52a908eeb27418f8b39d7b4e863b1aa455ed5c34b6fd6fefd80577e08e55c1ed
MD5 1747d821120bf0b0dd9d92ed15fb46f2
BLAKE2b-256 c2303ba6c74a897c50476e9ca4d14a50ac2b33bb6b4b4ff047328689cae421fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7fdaa459c241cba353e3d95eda9403d45f633ce5a807cf4eb28c018de8b52cde
MD5 0e29c7b90f691d209948bec54ed6b293
BLAKE2b-256 37110877c0c0ea6d1f35c7801ebae55b2bc3690de46d62b253417f96a52cc3ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5898e0a7c838923b846ac71564ff6d6ed20baf6ad91c8d146c13ac374237574c
MD5 b0beebea95438642f54cf53bc6fff554
BLAKE2b-256 b4b2a9bdd652524f16b0cf1ad2eeaeca8856d6bc08388ecf854d8bb8deb0f838

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f84b800b40e3ce612975a23385b36f9d8506fe7d511d3d4c2363e1a3304c8b07
MD5 e6f25151d75bf40369cd8b05428ad9d6
BLAKE2b-256 cf64a53fb665e1ac32b1520ed50fa311b7ccf5339377c9fd85a1c4ca2e035f15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3f109d22bcfc06837507b04f73deb1401446cf830c213ef1d6eb00af89c5562a
MD5 439d24d502da08561388fe2e791913a2
BLAKE2b-256 9dcd4cfd7f572387cb8e67906e7bd8991a0266f03e8ba0ef27d21bdb76d388c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 89b503fcc07da9fbd194746c28a9fc0fa7230f50f361ad080336ad751de6302a
MD5 fde8cc30b4bdf78186c4266a358ed186
BLAKE2b-256 9b58a7b1e54011d6431c07872ef64ff9f1055b625057d249af5406054f44b7bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58cb52aab1325c3000a2d9eddaf71a6d91533f94eb5c855a93a35a20ce44d430
MD5 818ea7b6008651e4f4a76455bd71a9f9
BLAKE2b-256 bc5a4f62f77d98e01942a1af1c2579422a2462ac7d96a0a82d9edb14fb07098e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fff48978d3b670b054c25ad6b7a834b3723ac055d5593552053812b74fee4377
MD5 1fc53b5a1e1c9946bba9a238c4fb4179
BLAKE2b-256 b04a321df77f262cb46095565be4f49a15fb0ef96acea8670f303018e06600e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1e9791475a2f3b50f56ed4bfca8b17c8c334f0e0f8cb5898480be994a76bd446
MD5 f00109476cca5caf16ba5297afd4d14a
BLAKE2b-256 f267fdc31aed5d79fc0504a2091eab8344c7546fd32d9b43d972a0ada78527d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 0cf76a1f78031a7e654c50e614b4244785bae04c72f181fbb609daa26f894390
MD5 fd51c810d79e48494a0905d290ffad03
BLAKE2b-256 452c5a224529f883a1d6067bafced9d3beace90535ef8120891486e0fee76c77

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 c17f02dde5ee05956bc3fe8320f3cf5c44a11aa9ab334623729cebecdf70afef
MD5 b0e4a953dca28c44e8baa4e96ac21943
BLAKE2b-256 c4007dc817a80405bbafb15a0103c13ace1ff6ed997c0846e953180c872f24c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 4db46538d8f0bb7d3d01dea1cd884204bdba3a833ec7e91379cb6ebdb9bd6fc0
MD5 537df9098808979b88d26bd7587d6f24
BLAKE2b-256 53c9d28db3eabfa7f7af9e971396229ecf9db6c0c1deef61cb191e0b01ba1cf2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.0b3-cp27-cp27m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for SQLAlchemy-1.4.0b3-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 48db9563a8a304e0177711df9abdad30aecbc13571671c9a79906d0f42c03a19
MD5 40f477e0f41afe891bce8fed52557219
BLAKE2b-256 0eea90d2265880af3431bd1d4a854bcb8969ba5f51c7dbfb8ab3d1b62b9e7bb4

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