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

Uploaded Source

Built Distributions

SQLAlchemy-2.0.0b4-py3-none-any.whl (1.8 MB view details)

Uploaded Python 3

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

SQLAlchemy-2.0.0b4-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.0b4-cp311-cp311-musllinux_1_1_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

SQLAlchemy-2.0.0b4-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.0b4-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.0b4-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

SQLAlchemy-2.0.0b4-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.0b4-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

SQLAlchemy-2.0.0b4-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.0b4-cp310-cp310-musllinux_1_1_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

SQLAlchemy-2.0.0b4-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.0b4-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.0b4-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

SQLAlchemy-2.0.0b4-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.0b4-cp39-cp39-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

SQLAlchemy-2.0.0b4-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.0b4-cp39-cp39-musllinux_1_1_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

SQLAlchemy-2.0.0b4-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.0b4-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.0b4-cp39-cp39-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

SQLAlchemy-2.0.0b4-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.0b4-cp38-cp38-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

SQLAlchemy-2.0.0b4-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.0b4-cp38-cp38-musllinux_1_1_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

SQLAlchemy-2.0.0b4-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.0b4-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.0b4-cp38-cp38-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

SQLAlchemy-2.0.0b4-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.0b4-cp37-cp37m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

SQLAlchemy-2.0.0b4-cp37-cp37m-musllinux_1_1_x86_64.whl (2.7 MB view details)

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

SQLAlchemy-2.0.0b4-cp37-cp37m-musllinux_1_1_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

SQLAlchemy-2.0.0b4-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.0b4-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.0b4-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.0b4.tar.gz.

File metadata

  • Download URL: SQLAlchemy-2.0.0b4.tar.gz
  • Upload date:
  • Size: 9.1 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.0b4.tar.gz
Algorithm Hash digest
SHA256 3192d9af656d0fc1b07351f0ac13a84bb679f40f918234e54cbcc36af11766fe
MD5 9043baadddd4223c701fbc0de27aac0f
BLAKE2b-256 fb95439baa450e0171df605502f0f441108e9bf250f2817a11647bc5f19d61dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-py3-none-any.whl
Algorithm Hash digest
SHA256 68a584e37b2b582047ebf60d0975ef8f6f80cffa6221a392a73ee9bc46fa7c7e
MD5 f4fc915aadd5733c3cc1df3b4b06935a
BLAKE2b-256 2488ed749b60194050e12a094e0a598bd430d6d25fcce81b9dc2d490ce3c934b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 40a166b7820b13667d72adaa46575bfb04f6dd417a1a07289fa7e94cdb2fb838
MD5 a636fbac602f9dc45be8933c4fd45449
BLAKE2b-256 2d361c0cc0d5964325769d28aa94471fee9ff8e2f4de4784e58d5d67fde777f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a0661809504c2d4339f5f2fd5170537f43b2bdde71fa29e87bd9905a2cb5d490
MD5 dff14cc7491b7e90c6ef712646ff66c1
BLAKE2b-256 94b6b2a7caac4a710109a79b1249df87a07d6a0b4e45a53f1484678e3efa901d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f28ee1d4ada7493e1128f8ee9c2b0cacef19ca3d4b6ab52d6858eb9201fc71c5
MD5 517b39251e0b0daba988db4b2244e0b3
BLAKE2b-256 cad18f917f87179667e6d0569797dc735ed8270261acdd346717f53bb46f7b37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5fb8d24020f7ae5f1b08f222eacd09643b7c63a0b385c64333a41e177351f12c
MD5 feacf080fef20b1c804ea9c5ddee9ae2
BLAKE2b-256 c23dc3ac1458e7dceaa7dfb95f569a26a69751028ad70cfbc2e3e4f625950ffb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17fad5ba55f92fd1646aa7d97f96b635d50051ce33791e53d39b5310f87f189f
MD5 9cd5f46a326746d5cbdda7f605b99020
BLAKE2b-256 3d4d6704c59282d242bef58a00762c0180d67febb608daf07e1a02c992aec30a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 541caec6f148b8d8410adcc1d0db5cc24d39995446db237d390882bb9f256c5f
MD5 9dec05e771643803b564bc18e2b279e4
BLAKE2b-256 ff23363918d70782807865130a677ec170494b370a330d1d760e46d0eb7a00b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c60418ed2b9f27b4f47766994d5cfc43c812eb62e146660daf454965bd7a0b3
MD5 7311d910b51637733c021da1b26b5105
BLAKE2b-256 c3be15307ae15e226b5889f0fe52d6b5861013183562075801889a1c719c1168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 02eb8f9519c7b91c34b169e2bd97c30dca215826710d6be784e54995d999cc3d
MD5 98f7207c412128a63c020442d988e240
BLAKE2b-256 331dfd2c08a1e4489ac6f59a81deb4ebc2925a9403d4034c3642d20e501afbd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 343999f56ac5adf90c9e9b005470291862188308e49d51e453605f30b172938c
MD5 a016b5c3046751edfb4ebf3e429d9376
BLAKE2b-256 92a56b0b8785d9fc360b745f065f567badf75dd09bd8a11cd87e34b0b1f0134a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c2ee253256330e9a6aed62c119b11ebbe7d65efe3e83cd8c43c35c719c1cfb83
MD5 12f675b749069cfca7794756ce693b87
BLAKE2b-256 ef06d698c570a6390003d7fc47c942c8a690b3c56c2f7360d5968848d41072ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 93ce5c23971ec0a021fd0aaab96be73053f2f7226849f1dd4b25e933a2493831
MD5 8aa2c8d718b9d8df444a0d825b4cbecb
BLAKE2b-256 ab3d8817745c1705090e4dea4fb169ffc9a8149718b58cbf2c0643f323e2d8df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 38fe1e92798b6fd34891b86094814c6aeed81e2b4b1ee3311d5e85b1ba0c5dea
MD5 1db2621f41147498565f2a68af81a7e4
BLAKE2b-256 6bc81173f3b881cb967bfd7ddc02eb1eabdbb08690040b65c5d8b8edd114a5aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e572557e2f6ce617c3354e69e3f20772a6d1fa9375fb0a3a6559050f27c6f2b7
MD5 3f97904e82af639c685fb91577214ed4
BLAKE2b-256 46b687efe1d9ef8657a8d1f27dc5a1e776eadf412f0f46232eb0d935b758b043

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf6326ed3f973cb28271d3366fec7db18f3639f005f3febf4c1ec64c71404954
MD5 b3da92ba74e71b9853c305f7630c783f
BLAKE2b-256 ceebd2601791b7432a7dad6d4768db0c89fab8892b65300ab716eb9e69530b67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c53cdf387bb9c52601e4266b47f8fda4c8cffbdb4169eccf50cc750e6f80d29
MD5 33cd5cd89f480dd3187ee908da416c9b
BLAKE2b-256 df8419faf4c3579bf77b927ed0dce179c8433d6a0ba04d7afe2d5228dd574dac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 47676ec13cd42affb087536e7445440e1f1c5445214496c2155bcba1c2493200
MD5 4b034f405e0619a69259cc6e6b733263
BLAKE2b-256 29e3aa1c9acc951de8b4616ada5c84a2b7f7fa59538823fcac042768c26739fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 07e12e63e98f34a1f529adc8931f7909148aca9809686e922f782f54e9d194fa
MD5 aab18f5ab61061677f10190ec696be6f
BLAKE2b-256 edc95c0b49b00d7a4fb4838ef4e7ba777d2204f3a1431670d3fcf631fbfd71c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-2.0.0b4-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.2 CPython/3.10.8

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0ff16ff5e943cdbd65242756d430df4c98bd9296f78fcf6e30eb8bee62d13ec2
MD5 979e0422b2414bc02f901fd7acc1aa58
BLAKE2b-256 ee169fec5e48cec6876f89781705f3534ca1be03319fbfe04bcc01ca9a9b92bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 57f405fe44cd3a7785a014c62369df138ea95dd3b2887090aad9b24ea093f6e6
MD5 ba75ee4400249c702783ebdf8cae65b0
BLAKE2b-256 62fdd10ed6974ed6cb56f7bd3affd86447e4533f2c4673cb4ab732837959b7e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 86165070c4d0fa0d3a4fe57879ffc817d75cff23f73cf1f8f6fabaee31cb9b5c
MD5 9299019b5913fffa3b00a61ce7a3ffd5
BLAKE2b-256 c3362e26075e8a3a1e18c27b6f08aa3ae25514b9827f077081adff18ba0869bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f640d189c9a462550d6c6e1b23a29f98db0c7d2eb283867e28a22a9177d92d5
MD5 99b8b417b6770b6811dfdd6442b7c429
BLAKE2b-256 ec4b029eec18d3303a144494d71db316d1d9e2724465e716eca1a57f23d24b9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29bb560d8c4a53816d271275c1f76055c8aafe1a7c7582b0fe6f3de93feb26d0
MD5 99d3d13cb18695bf272ec465c0b69e68
BLAKE2b-256 c837f7011c8c2cc58c0f02599eb8e405e21ddfcee4b7a2ea90d49de8f8cc3dda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa434058577de8b2fa3f710afa147cbecc45929216e78802215bdd515a98e4de
MD5 e0b3aef81cd962fb38a9eddbb7c4c9e8
BLAKE2b-256 3d10272d5068411c60ec945ce0d6b673c3cec8c323db904cc091eda3779da470

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0ab88dfd38bfd05b9c5e7ca685c4a41bc7a2ec7cd263e199679903d41ea0b08c
MD5 d477e0e57853ad645b05ae682a0f279b
BLAKE2b-256 cbb15cf09409bd0a1d06245535d0ebad2014e98a7dea793abe247c81f6defdb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 dc34366c5c802836b0160c087a6cf8dbbed810654fde1b7d4fa19a9c93ac179d
MD5 49a9650e78a4229f709446c849c1ac08
BLAKE2b-256 07f0310b578942c06c1bb956f01d389f475b9abe4f964619fdd90cd484d9c95e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: SQLAlchemy-2.0.0b4-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.2 CPython/3.10.8

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f755808766fe3084dbf6907da03182c4ad848ea36906a06f2ee2a6e06dfcc0b7
MD5 3bea077dd8aa6464d865bf199e54ce5f
BLAKE2b-256 8784f125221092a06ec30030dbf61966fb8591aa2c042789b7dd482fce9b8252

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dfb3aba32cc442324d29e293b2dfae2d5931ae9ca0a733d2cb9064190b14451b
MD5 3cbd2eeed547726620bd24619a346b2d
BLAKE2b-256 243336ac55911b21c22f01f57332f59a9e1e1e09bcb7dd98e82bad3eef1da1ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a37a7a4cea0dced9640b64a092380b811b1670b664ac95115e85536ff8cbae36
MD5 ba604e4642782829760f17dc8cbe0010
BLAKE2b-256 5f9094754d51664d8719322e1c10844e147f668bf7b70d4c52f9fcfc84da7aec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e8714aba7cd67b09f0c249e03fd1e244113e37f0e3320393f5d8a9574aeedc8
MD5 27e79b89fe4a1cb07227aa00ba05e48a
BLAKE2b-256 bc6afa438f454b781565ed4e9ad2b6960f4db6153667ba58b6b53e2c1fd8257a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28104b37cafe8c5f83c0831d2e057e7043501420b8853f9a731245c60a9dfd2e
MD5 8f18f04d4cac21750f4670676f6cd058
BLAKE2b-256 980734779294dd3b0041debca444ae26f67194cdbd6dea8a5de4abf082386ce1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49656ede1328954521278a16b176cf977ba681451dab49344f596d9c697fbe02
MD5 7e88945cf20ce00cd7b87a3171204a4d
BLAKE2b-256 7e41cfb5b8051dc95fd3c4bbd1b0c4381008df69854f752eab7f4e4eaace0c13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 35bc474ca96f9b0177bb81e24024a1390d7577930fab67f276987caeb860e35d
MD5 52ab685729d7060ece9bf30a2fca7a52
BLAKE2b-256 605c0e439773dc170bf8e2d7e4d79767807da9b31af6ad7e1db8c313c91deac2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1e15c629b7099ffb10e8cc27456b98d5a3759b6a5b0e6fc77fc8252565641a3d
MD5 d80e6e2c56b0fb1e5091d85083ff12da
BLAKE2b-256 67d442e8e0d87740d89c7abfa346d6272c411f6e690b74fdcd70dec42b685f3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 1d08d4e48564b732f7372a2fce52bbdd558ae54b578a08648b5b27429582cc20
MD5 a68a4de6975c122d92ace0d98b1a101d
BLAKE2b-256 44cb37adf31cfa16b47f46b9e0c7837b6879da6585dca2c6762990195b7314ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4ed849702dd83f7db68b4380aa13cc9739b4656f13cb7de4e3a9f5884c92e0f7
MD5 b62b0e28df759e0138b99c93b7153052
BLAKE2b-256 b6f9aa2eb8b11760347c80bbcb6d95dc6ae6951f81f13642e7a5b29b239f7ce2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5bf749cb1bf707d5d9f8af78c4ebfd3b1e2e69eab46ab6f74a22720792302481
MD5 825dfc259c8817775c01bc1b93366a51
BLAKE2b-256 c8f5fb6dcaf86eb640a5bda383ea9e91ddb31f2a88e7c4b8cdd9a64a6d5a7cd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93457c593bb74d4cc5982a6f2b5f2719033232dd219f807caf5524419ae22981
MD5 7fc81094d79a8769541357164433712e
BLAKE2b-256 26a2898f5ae2afc9f7fe4f8db7de384a0701345d9c75bcee5da6a6b4c3e262a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ccdcf866f4cab9487a845cb3ab7f6b3d81539af146481e9dd1a5c77c85a82d6a
MD5 4696f95ee299cfd94e3f0c47eb092e6d
BLAKE2b-256 3fc4901ca06ce9047821ca3b3a5c5e0ea745d9bbb9b31b1158f9a6c594e86ba4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for SQLAlchemy-2.0.0b4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0133394aec83d88e65aee7e4e665223b0b96e5aac4ecf060475e0d3bb38e7e55
MD5 b5882b0a5512ff858e5a8c13deb2636d
BLAKE2b-256 f58897f681e745dbb9df685e6ec83d642798c081dc57dc005dbb09740a8f43b7

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