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.49.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.49-py3-none-any.whl (1.9 MB view details)

Uploaded Python 3

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

sqlalchemy-2.0.49-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.49-cp314-cp314t-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

sqlalchemy-2.0.49-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.49-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.49-cp314-cp314-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

sqlalchemy-2.0.49-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.49-cp314-cp314-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

sqlalchemy-2.0.49-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.49-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.49-cp314-cp314-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

sqlalchemy-2.0.49-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.49-cp313-cp313t-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

sqlalchemy-2.0.49-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.49-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.49-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

sqlalchemy-2.0.49-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.49-cp313-cp313-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

sqlalchemy-2.0.49-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.49-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.49-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

sqlalchemy-2.0.49-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.49-cp312-cp312-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sqlalchemy-2.0.49-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.4 MB view details)

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

sqlalchemy-2.0.49-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.49-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

sqlalchemy-2.0.49-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.49-cp311-cp311-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

sqlalchemy-2.0.49-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.49-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.49-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

sqlalchemy-2.0.49-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.49-cp310-cp310-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

sqlalchemy-2.0.49-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.49-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.49-cp310-cp310-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

sqlalchemy-2.0.49-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.49-cp39-cp39-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

sqlalchemy-2.0.49-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.49-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.49-cp39-cp39-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sqlalchemy-2.0.49-cp38-cp38-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

sqlalchemy-2.0.49-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.49-cp38-cp38-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

sqlalchemy-2.0.49-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.49-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.49-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.49.tar.gz.

File metadata

  • Download URL: sqlalchemy-2.0.49.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.49.tar.gz
Algorithm Hash digest
SHA256 d15950a57a210e36dd4cec1aac22787e2a4d57ba9318233e2ef8b2daf9ff2d5f
MD5 e7e941a14ffe78d66bf23cdaaccdee7d
BLAKE2b-256 0945461788f35e0364a8da7bda51a1fe1b09762d0c32f12f63727998d85a873b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sqlalchemy-2.0.49-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.49-py3-none-any.whl
Algorithm Hash digest
SHA256 ec44cfa7ef1a728e88ad41674de50f6db8cfdb3e2af84af86e0041aaf02d43d0
MD5 a9faef45c5cae4c025354ff58c693249
BLAKE2b-256 e5308519fdde58a7bdf155b714359791ad1dc018b47d60269d5d160d311fdc36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 275424295f4256fd301744b8f335cff367825d270f155d522b30c7bf49903ee7
MD5 ac2d9fbf6165f244c961757fa0ed7c6a
BLAKE2b-256 05529f1a62feab6ed368aff068524ff414f26a6daebc7361861035ae00b05530

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sqlalchemy-2.0.49-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.49-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 6270d717b11c5476b0cbb21eedc8d4dbb7d1a956fd6c15a23e96f197a6193158
MD5 3ff3229a052e9ab59a8521f6370ad67f
BLAKE2b-256 e5c3c80fcdb41905a2df650c2a3e0337198b6848876e63d66fe9188ef9003d24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f605a456948c35260e7b2a39f8952a26f077fd25653c37740ed186b90aaa68a
MD5 0fd38edf0d88df6a3221f6aeebd49b30
BLAKE2b-256 b750276b9a007aa0764304ad467eceb70b04822dc32092492ee5f322d559a4dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c04bff9a5335eb95c6ecf1c117576a0aa560def274876fd156cfe5510fccc61
MD5 bacf8a59e203169cb2cebdbbbdab43c6
BLAKE2b-256 73a320faa869c7e21a827c4a2a42b41353a54b0f9f5e96df5087629c306df71e

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.49-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.49-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7c821c47ecfe05cc32140dcf8dc6fd5d21971c86dbd56eabfe5ba07a64910c01
MD5 edc23af2092222289c199c4b11b54f3b
BLAKE2b-256 0ca4ed7b18d8ccf7f954a83af6bb73866f5bc6f5636f44c7731fbb741f72cc4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c1dc3368794d522f43914e03312202523cc89692f5389c32bea0233924f8d977
MD5 5d800717d0423229dd0329bd9fd5ed84
BLAKE2b-256 1f3395e7216df810c706e0cd3655a778604bbd319ed4f43333127d465a46862d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 77641d299179c37b89cf2343ca9972c88bb6eef0d5fc504a2f86afd15cd5adf5
MD5 00026cd3863b5f2704cbd41f60020bd1
BLAKE2b-256 cf4f8297e4ed88e80baa1f5aa3c484a0ee29ef3c69c7582f206c916973b75057

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sqlalchemy-2.0.49-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.49-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0f2fa354ba106eafff2c14b0cc51f22801d1e8b2e4149342023bd6f0955de5f5
MD5 bacb1064506d16f5d79116308f730745
BLAKE2b-256 56196a20ea25606d1efd7bd1862149bb2a22d1451c3f851d23d887969201633f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a05977bffe9bffd2229f477fa75eabe3192b1b05f408961d1bebff8d1cd4d401
MD5 670aef649c2b64c2f6157ee7d6e413d4
BLAKE2b-256 6784acb56c00cca9f251f437cb49e718e14f7687505749ea9255d7bd8158a6df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e0400fa22f79acc334d9a6b185dc00a44a8e6578aa7e12d0ddcd8434152b187
MD5 d04a9302ca70ebbb0bbee8a62160040e
BLAKE2b-256 9168bb406fa4257099c67bd75f3f2261b129c63204b9155de0d450b37f004698

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.49-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.49-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 685e93e9c8f399b0c96a624799820176312f5ceef958c0f88215af4013d29066
MD5 2dbd9e64785c2bc0890a2006e209a596
BLAKE2b-256 2e84efc7c0bf3a1c5eef81d397f6fddac855becdbb11cb38ff957888603014a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 57ca426a48eb2c682dae8204cd89ea8ab7031e2675120a47924fabc7caacbc2a
MD5 e8786e6194a0a7b420b786213ce434a0
BLAKE2b-256 d1a75f476227576cb8644650eff68cc35fa837d3802b997465c96b8340ced1e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 233088b4b99ebcbc5258c755a097aa52fbf90727a03a5a80781c4b9c54347a2e
MD5 706936b9a91bf413e5a0d89bd260281b
BLAKE2b-256 5533bf28f618c0a9597d14e0b9ee7d1e0622faff738d44fe986ee287cdf1b8d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 b9870d15ef00e4d0559ae10ee5bc71b654d1f20076dbe8bc7ed19b4c0625ceba
MD5 fc10c3b9682f98f66e689b6f9cb5b848
BLAKE2b-256 0e51fb5240729fbec73006e137c4f7a7918ffd583ab08921e6ff81a999d6517a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sqlalchemy-2.0.49-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.49-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 9c4969a86e41454f2858256c39bdfb966a20961e9b58bf8749b65abf447e9a8d
MD5 88ec989ffcefb5b5c8049080a7fd99de
BLAKE2b-256 d5e80a9f5c1f7c6f9ca480319bf57c2d7423f08d31445974167a27d14483c948

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 46796877b47034b559a593d7e4b549aba151dae73f9e78212a3478161c12ab08
MD5 3f1e9229cdf59df0878190417c2e558d
BLAKE2b-256 a53dce71cfa82c50a373fd2148b3c870be05027155ce791dc9a5dcf439790b8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55250fe61d6ebfd6934a272ee16ef1244e0f16b7af6cd18ab5b1fc9f08631db0
MD5 d9d185a1664dbb1861aecdb42aefacb4
BLAKE2b-256 ff0a2aac8b78ac6487240cf7afef8f203ca783e8796002dc0cf65c4ee99ff8bb

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.49-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.49-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a51d3db74ba489266ef55c7a4534eb0b8db9a326553df481c11e5d7660c8364d
MD5 4f64d7fc1599a20783d1c78a9575386c
BLAKE2b-256 8cd8fda95459204877eed0458550d6c7c64c98cc50c2d8d618026737de9ed41a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 24bd94bb301ec672d8f0623eba9226cc90d775d25a0c92b5f8e4965d7f3a1518
MD5 af47d51ef87c2fb402a279fc238f53ac
BLAKE2b-256 284b52a0cb2687a9cd1648252bb257be5a1ba2c2ded20ba695c65756a55a15a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 12b04d1db2663b421fe072d638a138460a51d5a862403295671c4f3987fb9148
MD5 ce1388e78cc8f9e0a8dfdfd91914e28a
BLAKE2b-256 173a7215b1b7d6d49dc9a87211be44562077f5f04f9bb5a59552c1c8e2d98173

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sqlalchemy-2.0.49-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.49-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a143af2ea6672f2af3f44ed8f9cd020e9cc34c56f0e8db12019d5d9ecf41cb3b
MD5 2efc20260acd9a145c93c3c27b2951e8
BLAKE2b-256 f730ad62227b4a9819a5e1c6abff77c0f614fa7c9326e5a3bdbee90f7139382b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b1c058c171b739e7c330760044803099c7fff11511e3ab3573e5327116a9c33
MD5 048bc9dac40b29d1cb2ac4b5afcc44e2
BLAKE2b-256 bcd15f6bdad8de0bf546fc74370939621396515e0cdb9067402d6ba1b8afbe9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22d8798819f86720bc646ab015baff5ea4c971d68121cb36e2ebc2ee43ead2b7
MD5 ad84ed0a23b1b1c198efe6ded36fb446
BLAKE2b-256 8850a6af0ff9dc954b43a65ca9b5367334e45d99684c90a3d3413fc19a02d43c

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.49-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.49-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 47604cb2159f8bbd5a1ab48a714557156320f20871ee64d550d8bf2683d980d3
MD5 ee90f6ffbf89cfc5fd8a4935e8617783
BLAKE2b-256 cdf5038741f5e747a5f6ea3e72487211579d8cbea5eb9827a9cbd61d0108c4bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8e20e511dc15265fb433571391ba313e10dd8ea7e509d51686a51313b4ac01a2
MD5 e375663751220bc14be8763eef0c163e
BLAKE2b-256 a2bc3494270da80811d08bcfa247404292428c4fe16294932bce5593f215cad9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df2d441bacf97022e81ad047e1597552eb3f83ca8a8f1a1fdd43cd7fe3898120
MD5 d828d66f6201c7b7c3ab6e28c2c78bf5
BLAKE2b-256 ae8181755f50eb2478eaf2049728491d4ea4f416c1eb013338682173259efa09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 618a308215b6cececb6240b9abde545e3acdabac7ae3e1d4e666896bf5ba44b4
MD5 893a6745f9a77678aee33ba857bd1a32
BLAKE2b-256 479efd90114059175cac64e4fafa9bf3ac20584384d66de40793ae2e2f26f3bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sqlalchemy-2.0.49-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.49-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 83101a6930332b87653886c01d1ee7e294b1fe46a07dd9a2d2b4f91bcc88eec0
MD5 16b78ab8667548a083d4b58f6ce157ab
BLAKE2b-256 d99581f594aa60ded13273a844539041ccf1e66c5a7bed0a8e27810a3b52d522

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e06e617e3d4fd9e51d385dfe45b077a41e9d1b033a7702551e3278ac597dc750
MD5 066e507a53ba2ac10e4de1c6047a3e59
BLAKE2b-256 c5d7410f4a007c65275b9cf82354adb4bb8ba587b176d0a6ee99caa16fe638f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d6efc136f44a7e8bc8088507eaabbb8c2b55b3dbb63fe102c690da0ddebe55e
MD5 c347169ff3ecca4ab23726a79cf9da25
BLAKE2b-256 f82f6fd118563572a7fe475925742eb6b3443b2250e346a0cc27d8d408e73773

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.49-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.49-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3bb9ec6436a820a4c006aad1ac351f12de2f2dbdaad171692ee457a02429b672
MD5 81b8c121e3b2d2bb7b33cd4eb41d24cb
BLAKE2b-256 2cfa65fcae2ed62f84ab72cf89536c7c3217a156e71a2c111b1305ab6f0690e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fb37f15714ec2652d574f021d479e78cd4eb9d04396dca36568fdfffb3487982
MD5 cf043ee83d64b8ddb4386ba8ed30e0e5
BLAKE2b-256 5084b2a56e2105bd11ebf9f0b93abddd748e1a78d592819099359aa98134a8bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4bbccb45260e4ff1b7db0be80a9025bb1e6698bdb808b83fff0000f7a90b2c0b
MD5 02dee5bb354ffca1e0a6b02782f22a73
BLAKE2b-256 49b32de412451330756aaaa72d27131db6dde23995efe62c941184e15242a5fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 951d4a210744813be63019f3df343bf233b7432aadf0db54c75802247330d3af
MD5 73e9d549054fba3e0c1fc7771caa6ba0
BLAKE2b-256 c45955a6d627d04b6ebb290693681d7683c7da001eddf90b60cfcc41ee907978

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sqlalchemy-2.0.49-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.49-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 46d51518d53edfbe0563662c96954dc8fcace9832332b914375f45a99b77cc9a
MD5 75a8c891c48f3ddc8ab2a8f35b321e45
BLAKE2b-256 516cf8ab6fb04470a133cd80608db40aa292e6bae5f162c3a3d4ab19544a67af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32fe6a41ad97302db2931f05bb91abbcc65b5ce4c675cd44b972428dd2947700
MD5 279066c1639f363b1d1f761b1792a4ed
BLAKE2b-256 2f160dcc56cb6d3335c1671a2258f5d2cb8267c9a2260e27fde53cbfb1b3540a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ddcb27fb39171de36e207600116ac9dfd4ae46f86c82a9bf3934043e80ebb88
MD5 c9df9a496ce2ff9ebe1dc31b89234e02
BLAKE2b-256 4655d514a653ffeb4cebf4b54c47bec32ee28ad89d39fafba16eeed1d81dccd5

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.49-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.49-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d4e5a0ceba319942fa6b585cf82539288a61e314ef006c1209f734551ab9536
MD5 a08f946cd0accd82e8bcb4040073be2c
BLAKE2b-256 b1610722511d98c54de95acb327824cb759e8653789af2b1944ab1cc69d32565

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9ac7a3e245fd0310fd31495eb61af772e637bdf7d88ee81e7f10a3f271bff014
MD5 22d61c8999376e6ee5b361567f79bc12
BLAKE2b-256 209b91ca80403b17cd389622a642699e5f6564096b698e7cdcbcbb6409898bc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5070135e1b7409c4161133aa525419b0062088ed77c92b1da95366ec5cbebbe
MD5 127d5b14b3a88e6756fd081b05fd398b
BLAKE2b-256 60b5e3617cc67420f8f403efebd7b043128f94775e57e5b84e7255203390ceae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0c98c59075b890df8abfcc6ad632879540f5791c68baebacb4f833713b510e75
MD5 a625b30b5840b81bb7f0bdec48413b99
BLAKE2b-256 b5310defb93e3a10b0cf7d1271aedd87251a08c3a597ee4f353281769b547b5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sqlalchemy-2.0.49-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.49-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5e61abbec255be7b122aa461021daa7c3f310f3e743411a67079f9b3cc91ece3
MD5 94e5450e1ae2fec1b662860145a69b6f
BLAKE2b-256 69ec7be8c8cb35f038e963a203e4fe5a028989167cc7299927b7cf297c271e37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da9b91bca419dc9b9267ffadde24eae9b1a6bffcd09d0a207e5e3af99a03ce0d
MD5 34f21b2303887e9bbe8b023e8fc40cc3
BLAKE2b-256 44d35a9f7ef580af1031184b38235da6ac58c3b571df01c9ec061c44b2b0c5a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62557958002b69699bdb7f5137c6714ca1133f045f97b3903964f47db97ea339
MD5 87507cb74115393fd83bd500d1e6f269
BLAKE2b-256 ab06e797a8b98a3993ac4bc785309b9b6d005457fc70238ee6cefa7c8867a92e

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.49-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.49-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6eb188b84269f357669b62cb576b5b918de10fb7c728a005fa0ebb0b758adce1
MD5 06693de5396d17f5f3be6bc99873e997
BLAKE2b-256 901e410dd499c039deacff395eec01a9da057125fcd0c97e3badc252c6a2d6a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cc992c6ed024c8c3c592c5fc9846a03dd68a425674900c70122c77ea16c5fb0b
MD5 3a9781c14debc9e4ffd38a7f42a63069
BLAKE2b-256 24e217ba0b7bfbd8de67196889b6d951de269e8a46057d92baca162889beb16d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42e8804962f9e6f4be2cbaedc0c3718f08f60a16910fa3d86da5a1e3b1bfe60f
MD5 6d2f6f09e74d56521740f2021f7a6790
BLAKE2b-256 9676f908955139842c362aa877848f42f9249642d5b69e06cee9eae5111da1bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sqlalchemy-2.0.49-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.49-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 88690f4e1f0fbf5339bedbb127e240fec1fd3070e9934c0b7bef83432f779d2f
MD5 0d31a4bd4b61090f1f0c7592a908a42c
BLAKE2b-256 e15c480f5d8c737cfb4a494f87de6e0e58a6b6346a0f4db1fa8122c89828e32d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sqlalchemy-2.0.49-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.49-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 74ab4ee7794d7ed1b0c37e7333640e0f0a626fc7b398c07a7aef52f484fddde3
MD5 7be9477fb489a02ffde6d0fa42db1b0e
BLAKE2b-256 238d9630ddc9a4db638a7f29954b9e667a4ece41ff65e117460473ca41f06945

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 334edbcff10514ad1d66e3a70b339c0a29886394892490119dbb669627b17717
MD5 43c05931fc51112c290ccd6370290ed7
BLAKE2b-256 92b52165d3f8fa593f20039505af15474f63e85ffd7998afb6218b0fc0cd98e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 059d7151fff513c53a4638da8778be7fce81a0c4854c7348ebd0c4078ddf28fe
MD5 b82931def8621667de25a1ca3664a613
BLAKE2b-256 d59ba61fcb2e8439a2282e4ac0086bb613e88cd18168cddb358fa2c5790d4705

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.49-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.49-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d898cc2c76c135ef65517f4ddd7a3512fb41f23087b0650efb3418b8389a3cd1
MD5 b4d1c9ab84c252169c237b97ae0fa448
BLAKE2b-256 b7aa0099d0d554313c3587155b60288a9900660afc9989bf382176a5f4d7531b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d6be30b2a75362325176c036d7fb8d19e8846c77e87683ffaa8177b35135613
MD5 f8eaebff9d039644ce7a00ba4e7c2045
BLAKE2b-256 b09687e57cfa06af0032a7470660d33e93ad0a2480781bb7705f4312471b993e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43d044780732d9e0381ac8d5316f95d7f02ef04d6e4ef6dc82379f09795d993f
MD5 3e7c35e3de8f6059723677a311b3a72d
BLAKE2b-256 1d646eb36149b96796ecbc1e2438959d08475e1f8765acbe007f4785a603c39c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sqlalchemy-2.0.49-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.2 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.49-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b95b2f470c1b2683febd2e7eab1d3f0e078c91dbdd0b00e9c645d07a413bb99f
MD5 968d151bbd5af7cb6c627ef41a037297
BLAKE2b-256 da3f9e7940c559fb9e49c88d833194c58750c07d26046fbdbec95cf17f21824a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sqlalchemy-2.0.49-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.49-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 69469ce8ce7a8df4d37620e3163b71238719e1e2e5048d114a1b6ce0fbf8c662
MD5 fc9d0cd00b1c7425e29f39b285d8ca2c
BLAKE2b-256 70b106622e70d80138e2de25f4d17231e9491580de4b7f9ebcd9b0e7bf6ad3e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01146546d84185f12721a1d2ce0c6673451a7894d1460b592d378ca4871a0c72
MD5 71a6a16bb6280d693e5e23df90f4d052
BLAKE2b-256 46d88fb6506d23e1db357677942021d84f6913a8cf928a6fd1b158f5625dce84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d99945830a6f3e9638d89a28ed130b1eb24c91255e4f24366fbe699b983f29e4
MD5 0376aabeece309c318c1ed919e61acbf
BLAKE2b-256 c438a119ffc1e29e83932e652dfed3892ccf973bc29321f28a55b46d215f3ca6

See more details on using hashes here.

File details

Details for the file sqlalchemy-2.0.49-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.49-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 566df36fd0e901625523a5a1835032f1ebdd7f7886c54584143fa6c668b4df3b
MD5 e8a1ec2bbb95d25024cf286627637b1f
BLAKE2b-256 8dd9bdc792aff5f18b01b1ff008e4fa5500da5c255d7fb9e638beb854729bff2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c338ec6ec01c0bc8e735c58b9f5d51e75bacb6ff23296658826d7cfdfdb8678a
MD5 1112b575339f9257c987ea656cb64bb5
BLAKE2b-256 d0e74f1af1ae1649190440ddb2242dc5dea4cbe0d934734762547eb34c3c73b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sqlalchemy-2.0.49-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a97ac839c2c6672c4865e48f3cbad7152cee85f4233fb4ca6291d775b9b954a
MD5 8c58e9c713d7e0b96b9018a7b1e5182c
BLAKE2b-256 0237922acf5c6562a013d9ada0a9c70137a8209d5967354579708678c3275ed6

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