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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

sqlalchemy-2.0.48-py3-none-any.whl (1.9 MB view details)

Uploaded Python 3

sqlalchemy-2.0.48-cp314-cp314t-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14tWindows x86-64

sqlalchemy-2.0.48-cp314-cp314t-win32.whl (2.1 MB view details)

Uploaded CPython 3.14tWindows x86

sqlalchemy-2.0.48-cp314-cp314t-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

sqlalchemy-2.0.48-cp314-cp314t-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

sqlalchemy-2.0.48-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sqlalchemy-2.0.48-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sqlalchemy-2.0.48-cp314-cp314-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86-64

sqlalchemy-2.0.48-cp314-cp314-win32.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86

sqlalchemy-2.0.48-cp314-cp314-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

sqlalchemy-2.0.48-cp314-cp314-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

sqlalchemy-2.0.48-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sqlalchemy-2.0.48-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sqlalchemy-2.0.48-cp314-cp314-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sqlalchemy-2.0.48-cp313-cp313t-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.13tWindows x86-64

sqlalchemy-2.0.48-cp313-cp313t-win32.whl (2.1 MB view details)

Uploaded CPython 3.13tWindows x86

sqlalchemy-2.0.48-cp313-cp313t-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

sqlalchemy-2.0.48-cp313-cp313t-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

sqlalchemy-2.0.48-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sqlalchemy-2.0.48-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sqlalchemy-2.0.48-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

sqlalchemy-2.0.48-cp313-cp313-win32.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86

sqlalchemy-2.0.48-cp313-cp313-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

sqlalchemy-2.0.48-cp313-cp313-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

sqlalchemy-2.0.48-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sqlalchemy-2.0.48-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sqlalchemy-2.0.48-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sqlalchemy-2.0.48-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86-64

sqlalchemy-2.0.48-cp312-cp312-win32.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86

sqlalchemy-2.0.48-cp312-cp312-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sqlalchemy-2.0.48-cp312-cp312-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sqlalchemy-2.0.48-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sqlalchemy-2.0.48-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sqlalchemy-2.0.48-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sqlalchemy-2.0.48-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

sqlalchemy-2.0.48-cp311-cp311-win32.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86

sqlalchemy-2.0.48-cp311-cp311-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sqlalchemy-2.0.48-cp311-cp311-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

sqlalchemy-2.0.48-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sqlalchemy-2.0.48-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sqlalchemy-2.0.48-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sqlalchemy-2.0.48-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86-64

sqlalchemy-2.0.48-cp310-cp310-win32.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86

sqlalchemy-2.0.48-cp310-cp310-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sqlalchemy-2.0.48-cp310-cp310-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

sqlalchemy-2.0.48-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sqlalchemy-2.0.48-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sqlalchemy-2.0.48-cp310-cp310-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sqlalchemy-2.0.48-cp39-cp39-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.9Windows x86-64

sqlalchemy-2.0.48-cp39-cp39-win32.whl (2.1 MB view details)

Uploaded CPython 3.9Windows x86

sqlalchemy-2.0.48-cp39-cp39-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

sqlalchemy-2.0.48-cp39-cp39-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

sqlalchemy-2.0.48-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sqlalchemy-2.0.48-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sqlalchemy-2.0.48-cp39-cp39-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sqlalchemy-2.0.48-cp38-cp38-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.8Windows x86-64

sqlalchemy-2.0.48-cp38-cp38-win32.whl (2.1 MB view details)

Uploaded CPython 3.8Windows x86

sqlalchemy-2.0.48-cp38-cp38-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

sqlalchemy-2.0.48-cp38-cp38-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

sqlalchemy-2.0.48-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sqlalchemy-2.0.48-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sqlalchemy-2.0.48-cp38-cp38-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

Details for the file sqlalchemy-2.0.48.tar.gz.

File metadata

  • Download URL: sqlalchemy-2.0.48.tar.gz
  • Upload date:
  • Size: 9.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for sqlalchemy-2.0.48.tar.gz
Algorithm Hash digest
SHA256 5ca74f37f3369b45e1f6b7b06afb182af1fd5dde009e4ffd831830d98cbe5fe7
MD5 6c8b6f2648f192707671d55e96ee5ce9
BLAKE2b-256 1f73b4a9737255583b5fa858e0bb8e116eb94b88c910164ed2ed719147bde3de

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-py3-none-any.whl.

File metadata

  • Download URL: sqlalchemy-2.0.48-py3-none-any.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for sqlalchemy-2.0.48-py3-none-any.whl
Algorithm Hash digest
SHA256 a66fe406437dd65cacd96a72689a3aaaecaebbcd62d81c5ac1c0fdbeac835096
MD5 8cc5514c449904f8b1a745d032b826d3
BLAKE2b-256 462c9664130905f03db57961b8980b05cab624afd114bf2be2576628a9f22da4

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d854b3970067297f3a7fbd7a4683587134aa9b3877ee15aa29eea478dc68f933
MD5 b2368d75c4dfe06590aa5996b2b58433
BLAKE2b-256 d2d71e073da7a4bc645eb83c76067284a0374e643bc4be57f14cc6414656f92c

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp314-cp314t-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.0.48-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for sqlalchemy-2.0.48-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 b8438ec5594980d405251451c5b7ea9aa58dda38eb7ac35fb7e4c696712ee24f
MD5 cf930b663d5281a2252379862dbec5db
BLAKE2b-256 c89532107c4d13be077a9cae61e9ae49966a35dc4bf442a8852dd871db31f62e

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e004aa9248e8cb0a5f9b96d003ca7c1c0a5da8decd1066e7b53f59eb8ce7c62b
MD5 afd636ff6009857eb11286e5811a49ae
BLAKE2b-256 f433cea7dfc31b52904efe3dcdc169eb4514078887dff1f5ae28a7f4c5d54b3c

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a936f1bb23d370b7c8cc079d5fce4c7d18da87a33c6744e51a93b0f9e97e9b3
MD5 d2e404710a23b3caa08e4a122686e83a
BLAKE2b-256 cd7d5936c7a03a0b0cb0fa0cc425998821c6029756b0855a8f7ee70fba1de955

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7cddca31edf8b0653090cbb54562ca027c421c58ddde2c0685f49ff56a1690e0
MD5 1ef8b2b57c37c6aee12ede8b38c735e3
BLAKE2b-256 f84fa7cce98facca73c149ea4578981594aaa5fd841e956834931de503359336

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5aee45fd2c6c0f2b9cdddf48c48535e7471e42d6fb81adfde801da0bd5b93241
MD5 5377e65f472407b9acf0a4ba33a7c1a6
BLAKE2b-256 83e369d8711b3f2c5135e9cde5f063bc1605860f0b2c53086d40c04017eb1f77

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 144921da96c08feb9e2b052c5c5c1d0d151a292c6135623c6b2c041f2a45f9e0
MD5 b1708664733b2e606f74d44c04848c94
BLAKE2b-256 957ee83615cb63f80047f18e61e31e8e32257d39458426c23006deeaf48f463b

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp314-cp314-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.0.48-cp314-cp314-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for sqlalchemy-2.0.48-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1182437cb2d97988cfea04cf6cdc0b0bb9c74f4d56ec3d08b81e23d621a28cc6
MD5 aeaacbc99ec7260844b520ca9193360c
BLAKE2b-256 faa85fb0deb13930b4f2f698c5541ae076c18981173e27dd00376dbaea7a9c82

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8183dc57ae7d9edc1346e007e840a9f3d6aa7b7f165203a99e16f447150140d2
MD5 8749018c0826240a7acb6b778ad8bc43
BLAKE2b-256 8811fbaf1ae91fa4ee43f4fe79661cead6358644824419c26adb004941bdce7c

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 288937433bd44e3990e7da2402fabc44a3c6c25d3704da066b85b89a85474ae0
MD5 a22b8ee9bf02a6f320e991a680a4da88
BLAKE2b-256 2acaece73c81a918add0965b76b868b7b5359e068380b90ef1656ee995940c02

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 426c5ca86415d9b8945c7073597e10de9644802e2ff502b8e1f11a7a2642856b
MD5 e1056f2ea29bcb5ef57f21bcab07e8b5
BLAKE2b-256 f25e327428a034407651a048f5e624361adf3f9fbac9d0fa98e981e9c6ff2f5e

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 49b7bddc1eebf011ea5ab722fdbe67a401caa34a350d278cc7733c0e88fecb1f
MD5 c806875f99a36f693a4fefd036271647
BLAKE2b-256 6c1cb3abdf0f402aa3f60f0df6ea53d92a162b458fca2321d8f1f00278506402

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2d0d88686e3d35a76f3e15a34e8c12d73fc94c1dea1cd55782e695cc14086dd
MD5 5cf790caf5c23e34c8a0d74ad7c907e0
BLAKE2b-256 f7b3f437eaa1cf028bb3c927172c7272366393e73ccd104dcf5b6963f4ab5318

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 e2f35b4cccd9ed286ad62e0a3c3ac21e06c02abc60e20aa51a3e305a30f5fa79
MD5 b5ab2c3c7627fa20a133dc83ad76c6bb
BLAKE2b-256 9144f39d063c90f2443e5b46ec4819abd3d8de653893aae92df42a5c4f5843de

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp313-cp313t-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.0.48-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for sqlalchemy-2.0.48-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 9764014ef5e58aab76220c5664abb5d47d5bc858d9debf821e55cfdd0f128485
MD5 22f317781d59e20f4b129b0bbfc22a07
BLAKE2b-256 aeae29b87775fadc43e627cf582fe3bda4d02e300f6b8f2747c764950d13784c

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0dcbc588cd5b725162c076eb9119342f6579c7f7f55057bb7e3c6ff27e13121
MD5 75a540e3c62f01b2584c366b75a25aa7
BLAKE2b-256 865542404ce5770f6be26a2b0607e7866c31b9a4176c819e9a7a5e0a055770be

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ccd42229aaac2df431562117ac7e667d702e8e44afdb6cf0e50fa3f18160f0b
MD5 2c17038dba633b06f7075a21284cf2b0
BLAKE2b-256 85d7a84edf412979e7d59c69b89a5871f90a49228360594680e667cb2c46a828

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd08b90d211c086181caed76931ecfa2bdfc83eea3cfccdb0f82abc6c4b876cb
MD5 979cc7f0cc0b75ff50486dba2d774de9
BLAKE2b-256 200d213668e9aca61d370f7d2a6449ea4ec699747fac67d4bda1bb3d129025be

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 69f5bc24904d3bc3640961cddd2523e361257ef68585d6e364166dfbe8c78fae
MD5 b46a63b3e93b8f6fa1650b2f42e5a2ba
BLAKE2b-256 f4f47b17bd50244b78a49d22cc63c969d71dc4de54567dc152a9b46f6fae40ce

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d612c976cbc2d17edfcc4c006874b764e85e990c29ce9bd411f926bbfb02b9a2
MD5 47420d63f2da0e63f5455e76f53b47fc
BLAKE2b-256 b72bb9040bec58c58225f073f5b0c1870defe1940835549dafec680cbd58c3c3

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp313-cp313-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.0.48-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for sqlalchemy-2.0.48-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 389b984139278f97757ea9b08993e7b9d1142912e046ab7d82b3fbaeb0209131
MD5 b46779a470cf2db841fe1ced7e9f0b19
BLAKE2b-256 6f82ea4665d1bb98c50c19666e672f21b81356bd6077c4574e3d2bbb84541f53

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36ac4ddc3d33e852da9cb00ffb08cea62ca05c39711dc67062ca2bb1fae35fd8
MD5 3c46f4e8af4cb914e5973bedc85c09fb
BLAKE2b-256 37c36ae2ab5ea2fa989fbac4e674de01224b7a9d744becaf59bb967d62e99bed

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b193a7e29fd9fa56e502920dca47dffe60f97c863494946bd698c6058a55658
MD5 48c7ae0a9d7c1e4131947d00d85aa186
BLAKE2b-256 87dc1609a4442aefd750ea2f32629559394ec92e89ac1d621a7f462b70f736ff

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b19151e76620a412c2ac1c6f977ab1b9fa7ad43140178345136456d5265b32ed
MD5 bed6019f51c32480c3a591fd8a4bfcbb
BLAKE2b-256 fe88cb59509e4668d8001818d7355d9995be90c321313078c912420603a7cb95

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2645b7d8a738763b664a12a1542c89c940daa55196e8d73e55b169cc5c99f65f
MD5 31dd63a9c3dee12952fe66101470463e
BLAKE2b-256 6dfff4e04a4bd5a24304f38cb0d4aa2ad4c0fb34999f8b884c656535e1b2b74c

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3070c03701037aa418b55d36532ecb8f8446ed0135acb71c678dbdf12f5b6e4
MD5 9f9c03498fa3f84b8654562c630ebbf3
BLAKE2b-256 d1c6569dc8bf3cd375abc5907e82235923e986799f301cd79a903f784b996fca

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 68549c403f79a8e25984376480959975212a670405e3913830614432b5daa07a
MD5 f80cc50eea3dea8a8f254ce568d12386
BLAKE2b-256 f2afc3c7e1f3a2b383155a16454df62ae8c62a30dd238e42e68c24cebebbfae6

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp312-cp312-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.0.48-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for sqlalchemy-2.0.48-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 908a3fa6908716f803b86896a09a2c4dde5f5ce2bb07aacc71ffebb57986ce99
MD5 6700389f57a713d67cc68d6528ab1a48
BLAKE2b-256 4b441d257d9f9556661e7bdc83667cc414ba210acfc110c82938cb3611eea58f

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07edba08061bc277bfdc772dd2a1a43978f5a45994dd3ede26391b405c15221e
MD5 f4fc313c23351ee22fe7617c3ae0d2c4
BLAKE2b-256 ce8ca957bc91293b49181350bfd55e6dfc6e30b7f7d83dc6792d72043274a390

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 546572a1793cc35857a2ffa1fe0e58571af1779bcc1ffa7c9fb0839885ed69a9
MD5 debf84e64e6a1fcd77ffda698dcabd5a
BLAKE2b-256 1c460aee8f3ff20b1dcbceb46ca2d87fcc3d48b407925a383ff668218509d132

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 34634e196f620c7a61d18d5cf7dc841ca6daa7961aed75d532b7e58b309ac894
MD5 21ddc7eff416baa912e3b18d74b3556e
BLAKE2b-256 379a0c28b6371e0cdcb14f8f1930778cb3123acfcbd2c95bb9cf6b4a2ba0cce3

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 53667b5f668991e279d21f94ccfa6e45b4e3f4500e7591ae59a8012d0f010dcb
MD5 d3a26b8f0f6d10a64d7cf8422c1db278
BLAKE2b-256 b952f75f516a1f3888f027c1cfb5d22d4376f4b46236f2e8669dcb0cddc60275

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 348174f228b99f33ca1f773e85510e08927620caa59ffe7803b37170df30332b
MD5 d3bb6f0ded622993e434ccfc0d7d5519
BLAKE2b-256 ef91a42ae716f8925e9659df2da21ba941f158686856107a61cc97a95e7647a3

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 583849c743e0e3c9bb7446f5b5addeacedc168d657a69b418063dfdb2d90081c
MD5 af33fb715567ea3b356a0408cd216495
BLAKE2b-256 58d5dd767277f6feef12d05651538f280277e661698f617fa4d086cce6055416

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp311-cp311-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.0.48-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for sqlalchemy-2.0.48-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9c7d0a77e36b5f4b01ca398482230ab792061d243d715299b44a0b55c89fe617
MD5 26f73157fff5f8fc30f542034192f25d
BLAKE2b-256 40fdf32ced124f01a23151f4777e4c705f3a470adc7bd241d9f36a7c941a33bf

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5e088bf43f6ee6fec7dbf1ef7ff7774a616c236b5c0cb3e00662dd71a56b571
MD5 0215f067709ffc0d466f44c2691e30c3
BLAKE2b-256 8b19780138dacfe3f5024f4cf96e4005e91edf6653d53d3673be4844578faf1d

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82745b03b4043e04600a6b665cb98697c4339b24e34d74b0a2ac0a2488b6f94d
MD5 e3ea0cdace6ded2826f1430ea94b29d9
BLAKE2b-256 d9cc3e600a90ae64047f33313d7d32e5ad025417f09d2ded487e8284b5e21a15

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f7b7243850edd0b8b97043f04748f31de50cf426e939def5c16bedb540698f7
MD5 a29a47f3b1ea5c6dd8d9e54affa09fab
BLAKE2b-256 21dd3b7c53f1dbbf736fd27041aee68f8ac52226b610f914085b1652c2323442

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e83e3f959aaa1c9df95c22c528096d94848a1bc819f5d0ebf7ee3df0ca63db6c
MD5 30f07af2df79aa51e7c266be25e104aa
BLAKE2b-256 214b4f3d4a43743ab58b95b9ddf5580a265b593d017693df9e08bd55780af5bb

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b4c575df7368b3b13e0cebf01d4679f9a28ed2ae6c1cd0b1d5beffb6b2007dc
MD5 0e12f2b100065c84c67259c1a2b48cd6
BLAKE2b-256 d76db8b78b5b80f3c3ab3f7fa90faa195ec3401f6d884b60221260fd4d51864c

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 841a94c66577661c1f088ac958cd767d7c9bf507698f45afffe7a4017049de76
MD5 1519f1b03e9ea667dc42d75b697524ac
BLAKE2b-256 de039752eb2a41afdd8568e41ac3c3128e32a0a73eada5ab80483083604a56d1

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp310-cp310-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.0.48-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for sqlalchemy-2.0.48-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d404dc897ce10e565d647795861762aa2d06ca3f4a728c5e9a835096c7059018
MD5 b358ea0dfd8494d300f01b3f119de3a0
BLAKE2b-256 d75ab632875ab35874d42657f079529f0745410604645c269a8c21fb4272ff7a

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3713e21ea67bca727eecd4a24bf68bcd414c403faae4989442be60994301ded0
MD5 2d40effcfd0845e36a96d3be9375b9a5
BLAKE2b-256 3ff96dcc7bfa5f5794c3a095e78cd1de8269dfb5584dfd4c2c00a50d3c1ade44

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fac0fa4e4f55f118fd87177dacb1c6522fe39c28d498d259014020fec9164c29
MD5 bd05b0c131c692dc14fac4b41114caea
BLAKE2b-256 01f458f845e511ac0509765a6f85eb24924c1ef0d54fb50de9d15b28c3601458

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 10853a53a4a00417a00913d270dddda75815fcb80675874285f41051c094d7dd
MD5 ae6442c6fe267127c2ecaf114c777f77
BLAKE2b-256 5cad6c4395649a212a6c603a72c5b9ab5dce3135a1546cfdffa3c427e71fd535

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a89ce07ad2d4b8cfc30bd5889ec40613e028ed80ef47da7d9dd2ce969ad30e0
MD5 b552cecfbc2423b71be66b27eb31dc66
BLAKE2b-256 4dd7fa728b856daa18c10e1390e76f26f64ac890c947008284387451d56ca3d0

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7001dc9d5f6bb4deb756d5928eaefe1930f6f4179da3924cbd95ee0e9f4dce89
MD5 4a3c58aa46cba534aa7df122684f8037
BLAKE2b-256 9a671235676e93dd3b742a4a8eddfae49eea46c85e3eed29f0da446a8dd57500

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: sqlalchemy-2.0.48-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for sqlalchemy-2.0.48-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b8fc3454b4f3bd0a368001d0e968852dad45a873f8b4babd41bc302ec851a099
MD5 e1d3c80315e89a7e79215a702b759daa
BLAKE2b-256 d71da98057e05608316cd3c2710f0b3d35e83cec6bdf00833b53a02235a1712f

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp39-cp39-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.0.48-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for sqlalchemy-2.0.48-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e214d546c8ecb5fc22d6e6011746082abf13a9cf46eefb45769c7b31407c97b5
MD5 108e8deb72bbf2c939fad66dde953a4b
BLAKE2b-256 24cd0dda04e28df0db4ed0b7d374f7eb7da8566db523dbac9f627cc6e0422c6d

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bcb8ebbf2e2c36cfe01a94f2438012c6a9d494cf80f129d9753bcdf33bfc35a6
MD5 3ad11e85149b17ef411821591ef1b519
BLAKE2b-256 6cb895cb9642e608d02a0fd96bb3f7571b20a081313a178e1e661cc5dba37472

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a5b429eb84339f9f05e06083f119ad814e6d85e27ecbdf9c551dfdbb128eaf8a
MD5 48ffbcb0b3bad9b29f173a5bb517e61e
BLAKE2b-256 6bcef1c7c16d5ea0e4fbc14b473f02daedef8d77c582ef3c18b30b7307f85cff

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d8fcccbbc0c13c13702c471da398b8cd72ba740dca5859f148ae8e0e8e0d3e7e
MD5 e6d7390d7dc8d3de33a5fed7c851457c
BLAKE2b-256 86930822c24212a2943b3df02a02c49b2b32ab67705eaa0d2f40f28f9c2e8084

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f27f9da0a7d22b9f981108fd4b62f8b5743423388915a563e651c20d06c1f457
MD5 688d469bba80cdbf3fd41cd9a366d2ce
BLAKE2b-256 edc82e0de4efcba76ae8cc84000bc0aedf45f7d2674a7d8cf66b884a03c3f310

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4599a95f9430ae0de82b52ff0d27304fe898c17cb5f4099f7438a51b9998ac77
MD5 eb5eaafea7373baf53fe150351c165e8
BLAKE2b-256 f169c84f10a7fb0d6c50c0f6028cab1373ac1bc70a824d53bf857c33eddde5c4

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: sqlalchemy-2.0.48-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for sqlalchemy-2.0.48-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 858e433f12b0e5b3ed2f8da917433b634f4937d0e8793e5cb33c54a1a01df565
MD5 4e0800a381c6b0c864ed961884bc707c
BLAKE2b-256 c49b06e7d47b19f8defb5e23befde8118b1a4c476e869f678442756710683091

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp38-cp38-win32.whl.

File metadata

  • Download URL: sqlalchemy-2.0.48-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for sqlalchemy-2.0.48-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 01f6bbd4308b23240cf7d3ef117557c8fd097ec9549d5d8a52977544e35b40ad
MD5 be459e3cecf6380f22cf17a422ef5162
BLAKE2b-256 4ecec9d1193b2bd603c7f7ea644eeb9d76bb37d4b038c2d7b9fe9bc514277923

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d64177f443594c8697369c10e4bbcac70ef558e0f7921a1de7e4a3d1734bcf67
MD5 18d4889a1e4379ede6a04677389969d1
BLAKE2b-256 7eb1b89a81c0f021b59aab9f8f071d3f2c9dcdefa5de6264cb324fdf732ae27e

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c998f2ace8bf76b453b75dbcca500d4f4b9dd3908c13e89b86289b37784848b
MD5 de5d081492b2db10eb064d020668316b
BLAKE2b-256 494f4a9315373b963cb20b30cb91a61386673dcb6bc38d17709f9f720c60e9c5

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6b764fb312bd35e47797ad2e63f0d323792837a6ac785a4ca967019357d2bc7
MD5 a93c540964fac611b3c093c17fa52baa
BLAKE2b-256 d52a05092fa5cfce2665cf244e9a07ee0fc05f1d569a8a6d4425efc7f1a5be70

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6bb85c546591569558571aa1b06aba711b26ae62f111e15e56136d69920e1616
MD5 c21de90b27101e6279767d8f846e526f
BLAKE2b-256 6061d6fc6b1dc0d0ac5efa1ec75916efef64092a22542544d0dcedd00d5ee62a

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.48-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlalchemy-2.0.48-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8649a14caa5f8a243628b1d61cf530ad9ae4578814ba726816adb1121fc493e
MD5 74adab3249b4d2c4c3e9f307bcbe7165
BLAKE2b-256 1fc99fb0a349dc398e4b6a6aab60495d08f7ab94c27d4aa4a0dca8812e10f80d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page