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:

https://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-2.0.0b3.tar.gz (9.0 MB view details)

Uploaded Source

Built Distributions

SQLAlchemy-2.0.0b3-py3-none-any.whl (1.7 MB view details)

Uploaded Python 3

SQLAlchemy-2.0.0b3-cp311-cp311-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11 Windows x86-64

SQLAlchemy-2.0.0b3-cp311-cp311-win32.whl (1.9 MB view details)

Uploaded CPython 3.11 Windows x86

SQLAlchemy-2.0.0b3-cp311-cp311-musllinux_1_1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

SQLAlchemy-2.0.0b3-cp311-cp311-musllinux_1_1_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

SQLAlchemy-2.0.0b3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

SQLAlchemy-2.0.0b3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

SQLAlchemy-2.0.0b3-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

SQLAlchemy-2.0.0b3-cp311-cp311-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

SQLAlchemy-2.0.0b3-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10 Windows x86-64

SQLAlchemy-2.0.0b3-cp310-cp310-win32.whl (1.9 MB view details)

Uploaded CPython 3.10 Windows x86

SQLAlchemy-2.0.0b3-cp310-cp310-musllinux_1_1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

SQLAlchemy-2.0.0b3-cp310-cp310-musllinux_1_1_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

SQLAlchemy-2.0.0b3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

SQLAlchemy-2.0.0b3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

SQLAlchemy-2.0.0b3-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

SQLAlchemy-2.0.0b3-cp310-cp310-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

SQLAlchemy-2.0.0b3-cp39-cp39-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9 Windows x86-64

SQLAlchemy-2.0.0b3-cp39-cp39-win32.whl (1.9 MB view details)

Uploaded CPython 3.9 Windows x86

SQLAlchemy-2.0.0b3-cp39-cp39-musllinux_1_1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

SQLAlchemy-2.0.0b3-cp39-cp39-musllinux_1_1_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

SQLAlchemy-2.0.0b3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

SQLAlchemy-2.0.0b3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

SQLAlchemy-2.0.0b3-cp39-cp39-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

SQLAlchemy-2.0.0b3-cp39-cp39-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

SQLAlchemy-2.0.0b3-cp38-cp38-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.8 Windows x86-64

SQLAlchemy-2.0.0b3-cp38-cp38-win32.whl (1.9 MB view details)

Uploaded CPython 3.8 Windows x86

SQLAlchemy-2.0.0b3-cp38-cp38-musllinux_1_1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

SQLAlchemy-2.0.0b3-cp38-cp38-musllinux_1_1_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

SQLAlchemy-2.0.0b3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

SQLAlchemy-2.0.0b3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

SQLAlchemy-2.0.0b3-cp38-cp38-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

SQLAlchemy-2.0.0b3-cp38-cp38-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

SQLAlchemy-2.0.0b3-cp37-cp37m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.7m Windows x86-64

SQLAlchemy-2.0.0b3-cp37-cp37m-win32.whl (1.9 MB view details)

Uploaded CPython 3.7m Windows x86

SQLAlchemy-2.0.0b3-cp37-cp37m-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

SQLAlchemy-2.0.0b3-cp37-cp37m-musllinux_1_1_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

SQLAlchemy-2.0.0b3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

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

SQLAlchemy-2.0.0b3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

SQLAlchemy-2.0.0b3-cp37-cp37m-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: SQLAlchemy-2.0.0b3.tar.gz
  • Upload date:
  • Size: 9.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.0

File hashes

Hashes for SQLAlchemy-2.0.0b3.tar.gz
Algorithm Hash digest
SHA256 8325a4648e639cb2010199f64fad679d2f4ec8ce7e6f424ee1a41b07940cadb6
MD5 d65a8eeb4f33d393520c71c21cfea40d
BLAKE2b-256 9978e2c0742529789c58d5403e1daad55e09eceb7ad54996eb2732a151f879d0

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-py3-none-any.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-py3-none-any.whl
Algorithm Hash digest
SHA256 5a4dcd4e740cf0e1c38f4053b365a0270690dee60e6061f0eebb1b8d4afcc455
MD5 b98c3e0c993cce616474202ba4509eb5
BLAKE2b-256 aa08af79790787b5e7a9acb9107379a60d5e7dc6f9cad10b98b483004afadad5

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 13e09edb5e56745962e68bbb294ab40616de5ab81d913f5fc0617e8bd7ae9613
MD5 64c76a73699227586382497eb6f9abf1
BLAKE2b-256 9eb2c4c859b05d99f58509f1dca732c8d8963b0fd51863c17f68e11eb870ef89

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3e0c6cb1eb9f1af98f6c0bad02f515202c2046c0e5a6578ceb5a1f837f05b7ca
MD5 7922eb570e88d809530fa99bf0935f81
BLAKE2b-256 f2628a7315ee406ac7eedda4a67b62e84ad6c80212c7a5d619524c6f07e379b8

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a8f430b06bc0544f6d1c60316e3d46dacb8f4c56fe3c1aad98c5ed8376e188b1
MD5 301ee1e15e51930287337ba9866a0ede
BLAKE2b-256 315f379dbb9d89a224a1b238a37b5201a7054e4d8d35ec37c5c66bead93879be

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9a4502f9a0d2c56c25a908f422c5e7b9b04681eec6a0ecbb9640e55a612e445a
MD5 93fba57fb907ffe1e877fe7eefda119b
BLAKE2b-256 451260e61543d3fc499a16845dfe6f29e5f728b04af6b97cf300705d8a7d6ade

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2036168532709d36fa793307466d206f6e9fb6c9786f65e55e30b4150744c5b
MD5 a45048eb0d31a988ed77f8b30f102500
BLAKE2b-256 d0b531bb3e7ebba4be1587356e1c3b954022f0d139db88a916f79c3e725d5912

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec62f51379165f6e397cee567aed0c153bc1a5134b5506e692e72a9244f7bdb6
MD5 c3ae0d6a2196c8ab6193b89ccaf10013
BLAKE2b-256 8c73fb8d4a3308d20106a00377e7c731e477caa1f28c61acc2fdf55fb915b321

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08fcbc539b12ad25392cd2819c550bdd81c6b5838af605ff7225e13d30cdec09
MD5 3cdc7c767cc19f89faaec1d002e1ce17
BLAKE2b-256 f05a56127b225e63036a609a90c1842be9bc396d5ce6c9b9e6f296b9d14bd9fe

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ad1cdee2746641992888535bd10319af3dc2ed1e5be0f3a9fa8ca220c4f60053
MD5 48c6b3b86587157e75bbbc007e180556
BLAKE2b-256 fe189419dcf06dc340c1edfa6598cab2b092fdf1563c64448c6a106b5bd180db

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 788bd8f30c7ae464dc1c6d52225099be418de4a7328084871d921e34789895c9
MD5 294f9e93f3e8db4eaaa849c40fdee8ac
BLAKE2b-256 935d7217c733d3e391dd56538ad586b438d388a7314fc3f54cd0a40a71bba98b

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 807766854965ca15e429deac8d42c9c85f76662c2dd9b12d51c4cf28f93257f5
MD5 914b8d957e9f0ad207035afa3f4ce540
BLAKE2b-256 65d13e8b6e6d6905e837c113db16be365fcc512d52c5aed608d3cfe2118d1ea3

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4602122891ee172be33e4968397b1e2149b6e0bb2491de407adbe4ad13ae5d62
MD5 323122b9ef34e72c7dc1723aa9e2d36b
BLAKE2b-256 e33e08edfde841a52490182e7ad413c133faef12f268aa4fbd757d4ba41cbb5b

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2b65403da8e423382702e08e08f9bba0f037962ea3a4b1fdc1390fc749f962bf
MD5 2ed7d4a0c7595e68cd03701108b43ec3
BLAKE2b-256 826654bd3ccf2e2b8585bb668a39d99474a3a8fac24b27e45d77a2ef72528863

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2a3e32a4f9221bb56d51140f4ec1e8aa00c454e2db5c637bc047b09c0437a8b
MD5 74ff51c3a1bfc44a2381ca25a4e8c99f
BLAKE2b-256 d7927ca31e846873ce84d053f23e2d39e40e68ae405c33fe9bb0b5f708d3cca0

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4f04d40aac08bd93bf6e0941d57a3b9cfd5af3e8e3aa1673e3b02b5c7b36b95
MD5 091185d43925bb67cb193f4223fefb63
BLAKE2b-256 6f9e63dc06ba5cb7b9b56ac01f399078945ae8e958733ee9a9bbf90a261da3ae

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb4d857a0a44cc63aef1f10054cc2ed418850c300513676cdd257b9c247ed5c2
MD5 026f8911b99cb5e7a39897c23c671d1f
BLAKE2b-256 0a8945d94652574e4a345abb291a8a1718711697d5920a2513973b5f0bd9b849

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f0e0c31a2c9d7845e8ab6b7c8efba894400059cc35394be7a41e71937c0c1b0b
MD5 efba4a14e76b69d80fe5175e42d02c67
BLAKE2b-256 a7a7bbeaaefd3f2fd75b6dc8e3a1acd89ccbbca713ab7c9d5b867bb22120def7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4848bb2caba4847bca6ff2992e85acaefec2c2d31838426a5878109c3ff572f0
MD5 672ef6d4025a7c1b0105c8b45f19486d
BLAKE2b-256 a03e140b1864bb83c2fe74a6c63d3da33c74d580ff09f9ba0685690ce7580504

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-2.0.0b3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d04a026284da94fb517efc54c0fe4f2b252bcbc0a70b40e12e134c32c1be54ca
MD5 688887bad6dd5c719b6ce5f2bcbc432a
BLAKE2b-256 39eae539e1b95e3f04a0d4518b2d9cafda33d3f594a82c18fd39051fff327b74

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9b2fb7b69269660eaec8c7a6956c2af0650c5e27b5ee2fdec3b386635260a09c
MD5 fbff08389a0f1f6992fc62711c28d091
BLAKE2b-256 d865df79a35335882909d0d81d1cd3525e28bbd16fcf0bed867d0f12a1890e06

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 69b662b1580e8666f48eb7eee0e73d38bf7806f1edac9683e96dc867bc2cd497
MD5 6828a214adba8a88f490ca0f210f19df
BLAKE2b-256 6d1862c25e7a938504321ea5de31df231e6359958645e1d66c4fa1de3932fdaf

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67fb1c8600629528a2319dba8ecfd14ab44da5438e4cac7c3a90e5141d8891e5
MD5 60cb886e88f72206b4f4b9c3331718fd
BLAKE2b-256 cd87d101a5da63e1798e28ec1d7c7b3270324b5c53d2bda4a3d61373ed420132

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 478240f713fb686d43e8a8f4dd140066d27c8935398cf1b8825c8d97a90d6738
MD5 aae250b50f5341125b150ca9230e9948
BLAKE2b-256 04dada3fe926db3165f7beab9f6b5e129bfa3c532c078226d679328220de03da

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76ff62fa122a47e0b54010ae3865445d780307b1d43d75a6afdff7786f35a0ac
MD5 7e67f6bde80f8185173dd88a307b4bdc
BLAKE2b-256 b1f06d4346fc9e71ee9a2bb4af9c02da1651f3ab3ab68a25ce725a5b110a25e8

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e3072f681d44348ebb3061f79645fde89f5b5b153a95f3d8a08cb117103d4b9d
MD5 c5654e49d9c9f529d1f291b37cee81cf
BLAKE2b-256 ad38219629caa4a14cbd9aea3f85bf358c31c1de5e1e87f7f36c6d4853a7b18d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 365ed20ed0ab5f872370f7c929773428cea5edd287557a3a8f4455d2e4e9af58
MD5 0217118fffc857d1bb95db8d223bc30b
BLAKE2b-256 a688a296c4c70265d259e704781f121f133a0a04babbfb2dc44ad0f4ef56e413

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-2.0.0b3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ba9bce5d78762f40c3710b2dcff23893ce7092cecb5e7aeb4b3105cbab74d24e
MD5 c9a48c783b46b2ba3747140e59ee6917
BLAKE2b-256 52e0b1374b1e9e62b71fe1291902b2848a9bc6f4981f94904cfc3e036cc62b4f

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 067f39ea49d785ca5fb45ce5027132d0481dce527111521f9f75f3c08bec2890
MD5 d4318d7659e7d4fb9e8df966bebb5e26
BLAKE2b-256 cb4188ae441bb4f5d0694fec54fe670f7e0d587b2f1d67c540f3d5fbe829cf9f

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7fe566058ea4917c1e301540c3158cd988ef2256abbe7446ce04fc798f994bf7
MD5 86447d7687ba582a214a099b4315e5dd
BLAKE2b-256 9dc10728678e962d5110887cb340d90088a852565bece0e1b06249a67b5d11cb

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76b3a67f51d77f5348befb59f7a9be2c86356c84070f00632c41e3c3896cbb6c
MD5 f2779e7490aba81af7109b1c343aa9a6
BLAKE2b-256 944c9030602dc8d1a79aad4d2ae081fef9c3706f31bc05c92d567dffec06e519

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a6da5354929467718ab4d65d89d56d16ff603aa9c2c0f446bddf5322dbf2d7d
MD5 a0681e82969034f0fe2faccdd07bdb52
BLAKE2b-256 563748af81344a5ba1731af46e35bee8b138d37e9c2b033ee74e5125bc053c11

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b185d779b85700d063dab16aa1db3f90b3c7399107b6cc71f4ada25f080a5d6
MD5 7015417eee965794ebb1397adad808ce
BLAKE2b-256 8695cc1754f51303cd69527a2a3c06d3423c8df4403245e489c2e63951750d6e

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2b2292482f0984bfa1e4ccc6d9262173adc6b7a2c27d05db65e1e58674a1420e
MD5 0702946f049050fe8ef147e641f270fa
BLAKE2b-256 9c3ee2c5718098aee7100bfdbbd56dcec566ebcf646477907595d435b641d9f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 79fca874df318c98de8c8d8bad93caa3f372deeea4f0aba8f6f94839a7d81cfe
MD5 ec3ed3e4486d53229a4248af905c5963
BLAKE2b-256 78821454158cc7df37edf31fb8d4e5870ec5dd1f79bf4253651cc4a493271779

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6a110ac688ed555e4ab4d2306c917fd7bef41b90a4a67b49664ccd0651eeefe1
MD5 a9a11feed42a684067c92ae8df340f2f
BLAKE2b-256 5a5c8fd7339c419e85a2cc5ef37cc19e58aeeb2b7151667b95af7077974550b3

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5a5be14a942fc51e4c5be065de6db70e66b90b53593b39252f9e84081c4a6240
MD5 4839a3aaeb31b230b4bb74bf97390ea0
BLAKE2b-256 b3f524b70157376366c001ac005e5c00f84f0ddfe515b92b17642c580ea8446f

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 711013b6a41bfb13a4a45dbfffc78f4f7df30b12f864b8332d03d6f32d5e1bfa
MD5 d9dc825c489936bd4c367f9dfb00b151
BLAKE2b-256 14b0c733b290a6433bfe6a9e98103cda66608f03aadf34a694a6ac8ddd8a2570

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a90182e9e900b7ae306b1d5fbd626f44cbe9c6f6b5805a0d3ad3a1adec0ff03
MD5 8ccec4496c23d0518defd2ae76d782e8
BLAKE2b-256 c829bbe30364ea608ab5406e0ae793354535be438aede45daa91d6c6b8064dd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0bda1543efdff09fcc3ad743fbd74eed4d62c68ab4c7895f1f2e6144a1d6a680
MD5 03cf946519354f09a89007fe96363df4
BLAKE2b-256 32793bc83af5f9a3f763579f1540a8dddef6263607ac3510bcb146e516764c9f

See more details on using hashes here.

File details

Details for the file SQLAlchemy-2.0.0b3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c2e1d8bb1f1e2425b08629a7f6e66e9800cf4ef2a9b00dcfb1ccfab5e5f28291
MD5 47e4c86a3415ccd5fbe6beb2827f1fce
BLAKE2b-256 9b5ac12033fdd5769ffc0460f26c0d8f18e6080398bf0b944584ad3d1de45e1e

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