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.7

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9

SQLAlchemy-1.4.7-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.7-cp38-cp38-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8

SQLAlchemy-1.4.7-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.7-cp37-cp37m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

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

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

Uploaded CPython 3.7m

SQLAlchemy-1.4.7-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.7-cp36-cp36m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

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

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

Uploaded CPython 3.6m

SQLAlchemy-1.4.7-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.7-cp27-cp27mu-manylinux1_x86_64.whl (1.5 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

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

File metadata

  • Download URL: SQLAlchemy-1.4.7.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.7.tar.gz
Algorithm Hash digest
SHA256 84115f97d88c8ccf26db81b7997c5f5de9ae360e0785ef859d0987794495f0a9
MD5 b199bf09813cd314510a8a981babec23
BLAKE2b-256 5673920d88abb4739cbcec0cae681c1a902981081036f9cc789d33472c454650

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 606ac6a7640cc642fd53c5e693c560ad9fc21ef97aa7e799eb96b6d7f28ad723
MD5 4067270e775a30ee4d1efc571585b488
BLAKE2b-256 e0276501ea64bfdf288a018db16cf472a2239c65ce290f432e49fed2c202f241

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d26d8a3865c9f33d7b3b356a577c7f26c499a9f080ae33e4282a65a8a2170cef
MD5 8a4e3adc950b5b26eed0269d6c20ac22
BLAKE2b-256 c43b263240c9e71e99bf0cb3745e5cd14cb5af4828885b700a29cd88dfd74ef3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50b1cb7c9f6f0bbc68c06453d66d4a34ca75ba60bce61d49bf007edfd2621d0a
MD5 dead4c3570409c112ebe62935dcefc0e
BLAKE2b-256 72afece560849a1be0530a6862eeb11c372858d4179dafcc340f05509063916c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3a40d2a0cb2ca2886f8f2fe768e83aeca489a162c8233974b9b2e429827ed85
MD5 5be2f0362f6f503e8035e0b9adf84cb0
BLAKE2b-256 cc36836908833c781a6ff54b6fcc39f1d9ba562dda7f70980c7d088b2c270375

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bea07faab746743c8d82650b51129ff2705d53a0094161cfa6145e7ce77b9644
MD5 98d3039e47dab2b6f80d90a6ac2f447a
BLAKE2b-256 5695b0ffc05a9cbc132b7e7b1c8f4b4427113538f40053356e3dd45291c3ed21

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1d1172a9e5ead90d9299ccad8c5eecf40372a3721ff82fc4b4ee42835baf4659
MD5 83b61d749931aa5e23ed5e7aebc8d8cc
BLAKE2b-256 478d7d0d3e4e8a3877529a04ae4b8ce979cb9ba074f0780650a61ceb98d945e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 2bfadb3279f51252565baed9aa071c1bef875fcde60bf4a172136289ac208804
MD5 cfd6ac2117321af36424e97df4cc98f1
BLAKE2b-256 b4dee43f28933e5264c7a6a811cc0aedeafaba220221d0a11bcd91dfa4acec18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a7f450cbab9670949e7d9f0eac1dd93eaaffce319608bf4b863f0b751decef42
MD5 e4e98f97f8f00532bdfda0496fc1f7a9
BLAKE2b-256 bbaa319352e694230009404fc90e84334f2d3798e963b7f971af9f13fccc615e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3a022a7985a49cacf21e2a73bab083e4852943466d250d932554650d705fcc62
MD5 b7f2e8551a291f4f13a9506204ab4f92
BLAKE2b-256 4cd3ad3e46dfefbc1dc65a4e3204b7eedda35f7006e52a1e7f335ffab14bb2af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdd1e4ed5d526aa4c7a01ed2157d01f0234eaecdb04b1c3b5084d0902986be9f
MD5 528c12ad42fc5eeb930bcaa3a65419a3
BLAKE2b-256 2456b9abebc4ebd881e8f9aa62981c2bd9483bd2bcba7a8bcb2e10e4d1b2c120

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d84442d85491dc473bf99f4d90ad45dd2e5539743f4d1216b15ba26575ba572
MD5 182445438abbb29906ddcfef0fe50102
BLAKE2b-256 958a29758cfd2c28725e2095f8ba326ef0b3129d956ae7a385f59f458a778187

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 89860d594cb3256718d74ff7406a405a890eac71bcc044b3ba6868850d934a48
MD5 78b52d7f6f051a2eeeced9ad34b2f005
BLAKE2b-256 a5df3227111ea71828fd5902dc1b1757f4bdca29e7dc240fe4a78755181cd332

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9de4c84ea180c07f1d4010db2cfdbf9fe67bf7caafcfb1053644c8c03bfa3fd0
MD5 96e90149a1f1adc80e6bcac477f56129
BLAKE2b-256 456dd86920c464baa95a8ed6e32b8f4e594763c38c8240379633c6bf81e85149

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 72152b64508dd807ba2a26d9dfc4da450d0ba1808c9f96ddbc397c435735fac3
MD5 62140f45fe5bd271b224e5cba886a818
BLAKE2b-256 6cbfdc1277e7a48390c5f248b9437caa3ab440402c3a95b4e5bedd63ad11ce2b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6913ea108e7583f2d7ba4bc9cf4f2b1e0cdacf7e66e4cdc04192f870e64306ff
MD5 50c52e69fa0268bc6cd9f494a50fee7b
BLAKE2b-256 9b177e347bad1e0da16491ef304f03800e672c34ea580bcc14649aa7fe02966e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 aea57c7a5a4135abc10f81ce433b23325cbb9648a5dcb0ac1af1cdd413f7d0cb
MD5 d0e3d45cf85c0a63a02a121a7408ab57
BLAKE2b-256 d8c52a48870ea118b7f399bb49579e55b09c4e8b637837e50ea5c517a040c9b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 673cb375deb17e1561340710f428b33c27a11980d991a2ac88d7bf1c623faa0b
MD5 eca9af934a643a2467ba33e69c703913
BLAKE2b-256 85961141fd62522a23009db480b05ef8fa0de8c6cb3cbe4e678412190a381a97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 069fcda89c7d168382f674b5b566643f1420e4e7704c00cced2579675deb4eed
MD5 bb84c8884faf36fbb6df55c14ba4fa7d
BLAKE2b-256 3ef6608ee2cc570f25dd1cd6680149850d8f8fdc96c09b52cff91faec013fa2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c74310f13e5a113ef658345e2cedf9aa1fcb8b9a588e07d54c083c7fc71edf42
MD5 07bf76e9c04b831f72e0c483c33ac394
BLAKE2b-256 0d9507d103c53688a619cdf1eb214350cc979021ac3054b49a547616e51d485f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d5ef5619d421f8a86af874f867d17d823cd970ad0f2ae7c30723beb16922b4d6
MD5 773bb1d74b91a045f68c7ffdc904bf5f
BLAKE2b-256 f3c68e24af0cb1fb0164d9df68e89cb0009135b9e2a080ff0d9d001be353dcbb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 ef6d98d5b51eb826516499429e059872b61e272cb44630ca8de87650242d07d8
MD5 972cf2036516e4041c0da94611e9bf28
BLAKE2b-256 50e2e9002f1e3e8be8801e429a584cb9d5e022e6cf1a57dc55aff9fdab017980

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d81a68df4f3eee490b66ba990648d3c77cbf2475291ef92aa4e05ef541ecfd66
MD5 b179b97061a408f76319a43c2d0fc81c
BLAKE2b-256 4374420fb39698048651d78d78be4a6e2bcba47383c01794c8d79d9a181e12b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 6adb07e199781457b75f4773e63577a2898f95141f030b956a2a186055f24e76
MD5 f0e9c8ce57116d5acc8b48a609fe0504
BLAKE2b-256 2535678294f6151789c4ce8f28b0e5eda74e19ddad21a6d2797353a68700a42b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e98934855337d76aa7726f444b0fa597a462271a95d01bc050644d88e1ee5aae
MD5 5db06907027c9883fc1acb33888925f0
BLAKE2b-256 44c6d379657b0cf2cb4c2009c0ecc0356e949399c176c0a0f4faac1f0db7c759

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ecabd4cead9a582e2ffa7a3918bc31155d5c24b1fd16ed617171f913c438da1
MD5 a8f05f1fa7833c1dbd853d5cbdb5418d
BLAKE2b-256 3fe460c37798721c1b21dd6e5c7a2d119b02558e11f73292906d2df389d79c5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8672ff62c9d48f62aa17bb806a591cdfed801d139eecbcf9224bffb80f6fdc30
MD5 0714c33f0fd3d1c145427e21ae0dad3e
BLAKE2b-256 8b80354c726ac6ce88a87ca608250904b6faeeb2e5d7f714d91f36f65da58efc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 abf18c62c4740d7199e443537066904789052d6d165cb279eb91bea35ea42ec4
MD5 38f489264a01832f9e15e36af625c497
BLAKE2b-256 0c53a5089debc2bcdc64a94b72f4b13080c82c2d9e383c1352909433d0c211f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 d10117c9ce096bd6fb9a13c6fad274982f7889028e22a05719a6d219e2cf977e
MD5 a410365c3f9736f3986640bd375e4caa
BLAKE2b-256 d1c1985833832747ddf9060914036b59c00d249bb5bfe88bc19ffac17e865cc3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bb69a2d93c1a98a8d4ca24a8012ade4b771087dddbe077ad4ef4911d7f17185d
MD5 a1d84e6838bdff6d2990759c003bc0a4
BLAKE2b-256 0e0795edd17a46bf0babc0b1f51234cc85465584aa45acf5e91dfbf899cd08a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 8df743c79181ecc6aadaf10569d452ef3eda06764fe0adc4ea981a48c01e1ad5
MD5 7dffeb88d40880c4d3c952e656010478
BLAKE2b-256 8b4ed67850d8d6ca37acf5f98436afbcb9bd5732007a20ab1781c53d3693c2ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 58075eab5e32daf51e637ac88c63057c3a5e84602cfeb30db4258838ef6f7a2b
MD5 932a006016fdcde2a4567f2b0cb82240
BLAKE2b-256 85a07e6b874858d0b7ac20535ba725dbb2759d4cfbfe1ef0d7b50829e09e598c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 94fece3fdc777fbf37378513414bcf19ae89e1b598edf33d957a2898991d714f
MD5 12b1424080767bdec5dc3c8c54581ab0
BLAKE2b-256 5f6e621e8145a9727bb1412a3d0d63d4aa2f9598bb1ce433ca435e1c3d14d0c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-1.4.7-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.7-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e9c2aaaa9738ba3334262734bd25d9b2d6ea446400f815bbdea17571b9e6d8fb
MD5 681542e2407016b2827a1d7715673d48
BLAKE2b-256 e352bfdad5fc0d0aadc4a3fe612b3c71abf60b83ede335d51012baa76178c537

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