Skip to main content

An asyncio PostgreSQL driver

Project description

GitHub Actions status https://img.shields.io/pypi/v/asyncpg.svg

asyncpg is a database interface library designed specifically for PostgreSQL and Python/asyncio. asyncpg is an efficient, clean implementation of PostgreSQL server binary protocol for use with Python’s asyncio framework. You can read more about asyncpg in an introductory blog post.

asyncpg requires Python 3.9 or later and is supported for PostgreSQL versions 9.5 to 18. Other PostgreSQL versions or other databases implementing the PostgreSQL protocol may work, but are not being actively tested.

Documentation

The project documentation can be found here.

Performance

In our testing asyncpg is, on average, 5x faster than psycopg3.

https://raw.githubusercontent.com/MagicStack/asyncpg/master/performance.png?fddca40ab0

The above results are a geometric mean of benchmarks obtained with PostgreSQL client driver benchmarking toolbench in June 2023 (click on the chart to see full details).

Features

asyncpg implements PostgreSQL server protocol natively and exposes its features directly, as opposed to hiding them behind a generic facade like DB-API.

This enables asyncpg to have easy-to-use support for:

  • prepared statements

  • scrollable cursors

  • partial iteration on query results

  • automatic encoding and decoding of composite types, arrays, and any combination of those

  • straightforward support for custom data types

Installation

asyncpg is available on PyPI. When not using GSSAPI/SSPI authentication it has no dependencies. Use pip to install:

$ pip install asyncpg

If you need GSSAPI/SSPI authentication, use:

$ pip install 'asyncpg[gssauth]'

For more details, please see the documentation.

Basic Usage

import asyncio
import asyncpg

async def run():
    conn = await asyncpg.connect(user='user', password='password',
                                 database='database', host='127.0.0.1')
    values = await conn.fetch(
        'SELECT * FROM mytable WHERE id = $1',
        10,
    )
    await conn.close()

asyncio.run(run())

License

asyncpg is developed and distributed under the Apache 2.0 license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

asyncpg-0.31.0.tar.gz (993.7 kB view details)

Uploaded Source

Built Distributions

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

asyncpg-0.31.0-cp314-cp314t-win_amd64.whl (706.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

asyncpg-0.31.0-cp314-cp314t-win32.whl (614.5 kB view details)

Uploaded CPython 3.14tWindows x86

asyncpg-0.31.0-cp314-cp314t-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

asyncpg-0.31.0-cp314-cp314t-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

asyncpg-0.31.0-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

asyncpg-0.31.0-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

asyncpg-0.31.0-cp314-cp314t-macosx_11_0_arm64.whl (682.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

asyncpg-0.31.0-cp314-cp314t-macosx_10_15_x86_64.whl (702.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

asyncpg-0.31.0-cp314-cp314-win_amd64.whl (604.9 kB view details)

Uploaded CPython 3.14Windows x86-64

asyncpg-0.31.0-cp314-cp314-win32.whl (532.3 kB view details)

Uploaded CPython 3.14Windows x86

asyncpg-0.31.0-cp314-cp314-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

asyncpg-0.31.0-cp314-cp314-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

asyncpg-0.31.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.5 MB view details)

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

asyncpg-0.31.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.4 MB view details)

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

asyncpg-0.31.0-cp314-cp314-macosx_11_0_arm64.whl (638.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

asyncpg-0.31.0-cp314-cp314-macosx_10_15_x86_64.whl (660.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

asyncpg-0.31.0-cp313-cp313-win_amd64.whl (596.6 kB view details)

Uploaded CPython 3.13Windows x86-64

asyncpg-0.31.0-cp313-cp313-win32.whl (527.6 kB view details)

Uploaded CPython 3.13Windows x86

asyncpg-0.31.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

asyncpg-0.31.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

asyncpg-0.31.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.5 MB view details)

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

asyncpg-0.31.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.4 MB view details)

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

asyncpg-0.31.0-cp313-cp313-macosx_11_0_arm64.whl (636.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

asyncpg-0.31.0-cp313-cp313-macosx_10_13_x86_64.whl (661.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

asyncpg-0.31.0-cp312-cp312-win_amd64.whl (597.2 kB view details)

Uploaded CPython 3.12Windows x86-64

asyncpg-0.31.0-cp312-cp312-win32.whl (527.9 kB view details)

Uploaded CPython 3.12Windows x86

asyncpg-0.31.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

asyncpg-0.31.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

asyncpg-0.31.0-cp312-cp312-manylinux_2_28_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

asyncpg-0.31.0-cp312-cp312-manylinux_2_28_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

asyncpg-0.31.0-cp312-cp312-macosx_11_0_arm64.whl (638.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

asyncpg-0.31.0-cp312-cp312-macosx_10_13_x86_64.whl (662.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

asyncpg-0.31.0-cp311-cp311-win_amd64.whl (585.0 kB view details)

Uploaded CPython 3.11Windows x86-64

asyncpg-0.31.0-cp311-cp311-win32.whl (521.1 kB view details)

Uploaded CPython 3.11Windows x86

asyncpg-0.31.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

asyncpg-0.31.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

asyncpg-0.31.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

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

asyncpg-0.31.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

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

asyncpg-0.31.0-cp311-cp311-macosx_11_0_arm64.whl (638.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

asyncpg-0.31.0-cp311-cp311-macosx_10_9_x86_64.whl (643.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

asyncpg-0.31.0-cp310-cp310-win_amd64.whl (581.6 kB view details)

Uploaded CPython 3.10Windows x86-64

asyncpg-0.31.0-cp310-cp310-win32.whl (522.0 kB view details)

Uploaded CPython 3.10Windows x86

asyncpg-0.31.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

asyncpg-0.31.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

asyncpg-0.31.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

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

asyncpg-0.31.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.8 MB view details)

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

asyncpg-0.31.0-cp310-cp310-macosx_11_0_arm64.whl (639.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

asyncpg-0.31.0-cp310-cp310-macosx_10_9_x86_64.whl (644.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

asyncpg-0.31.0-cp39-cp39-win_amd64.whl (582.1 kB view details)

Uploaded CPython 3.9Windows x86-64

asyncpg-0.31.0-cp39-cp39-win32.whl (522.4 kB view details)

Uploaded CPython 3.9Windows x86

asyncpg-0.31.0-cp39-cp39-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

asyncpg-0.31.0-cp39-cp39-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

asyncpg-0.31.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

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

asyncpg-0.31.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.8 MB view details)

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

asyncpg-0.31.0-cp39-cp39-macosx_11_0_arm64.whl (639.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

asyncpg-0.31.0-cp39-cp39-macosx_10_9_x86_64.whl (645.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file asyncpg-0.31.0.tar.gz.

File metadata

  • Download URL: asyncpg-0.31.0.tar.gz
  • Upload date:
  • Size: 993.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncpg-0.31.0.tar.gz
Algorithm Hash digest
SHA256 c989386c83940bfbd787180f2b1519415e2d3d6277a70d9d0f0145ac73500735
MD5 9250b7d63ed0f79ebee12eef74e52f7a
BLAKE2b-256 feccd18065ce2380d80b1bcce927c24a2642efd38918e33fd724bc4bca904877

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0.tar.gz:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: asyncpg-0.31.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 706.1 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncpg-0.31.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 bd4107bb7cdd0e9e65fae66a62afd3a249663b844fa34d479f6d5b3bef9c04c3
MD5 37c989e13c4dcbfbdcdd8b81f752277c
BLAKE2b-256 3cd78fb3044eaef08a310acfe23dae9a8e2e07d305edc29a53497e52bc76eca7

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: asyncpg-0.31.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 614.5 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncpg-0.31.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 1b41f1afb1033f2b44f3234993b15096ddc9cd71b21a42dbd87fc6a57b43d65d
MD5 9068ea1cf484f641c41e988a63c85e5b
BLAKE2b-256 13d571437c5f6ae5f307828710efbe62163974e71237d5d46ebd2869ea052d10

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp314-cp314t-win32.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8df714dba348efcc162d2adf02d213e5fab1bd9f557e1305633e851a61814a7a
MD5 b67d042b297e25f120ffa29cd0579d84
BLAKE2b-256 ba7a15e37d45e7f7c94facc1e9148c0e455e8f33c08f0b8a0b1deb2c5171771b

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b1fbcb0e396a5ca435a8826a87e5c2c2cc0c8c68eb6fadf82168056b0e53a8c
MD5 af2850884b438b2dc8b9a87b1ca32ca6
BLAKE2b-256 7daa7d75ede780033141c51d83577ea23236ba7d3a23593929b32b49db8ed36e

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e009abc333464ff18b8f6fd146addffd9aaf63e79aa3bb40ab7a4c332d0c5e9e
MD5 7945e45c24ed2afd0f045612893c9141
BLAKE2b-256 7e062e3d4d7608b0b2b3adbee0d0bd6a2d29ca0fc4d8a78f8277df04e2d1fd7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 18c83b03bc0d1b23e6230f5bf8d4f217dc9bc08644ce0502a9d91dc9e634a9c7
MD5 fa4ef74c638b49540d8b19fdd05fe801
BLAKE2b-256 a6456009040da85a1648dd5bc75b3b0a062081c483e75a1a29041ae63a0bf0dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d11b198111a72f47154fa03b85799f9be63701e068b43f84ac25da0bda9cb31
MD5 efe5bf7ded0a8b781cb08e59343f4bc2
BLAKE2b-256 6a81e6be6e37e560bd91e6c23ea8a6138a04fd057b08cf63d3c5055c98e81c1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bdb957706da132e982cc6856bb2f7b740603472b54c3ebc77fe60ea3e57e1bd2
MD5 e57588fe77d4cb0180a3cdc3abe7e279
BLAKE2b-256 cefeb9dfe349b83b9dee28cc42360d2c86b2cdce4cb551a2c2d27e156bcac84d

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: asyncpg-0.31.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 604.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncpg-0.31.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 04d19392716af6b029411a0264d92093b6e5e8285ae97a39957b9a9c14ea72be
MD5 2af245adf55a25c96f9f43479e2002ca
BLAKE2b-256 d32d7aa40750b7a19efa5d66e67fc06008ca0f27ba1bd082e457ad82f59aba49

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: asyncpg-0.31.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 532.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncpg-0.31.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 cea3a0b2a14f95834cee29432e4ddc399b95700eb1d51bbc5bfee8f31fa07b2b
MD5 6b31b1f15db278721446e404db85094a
BLAKE2b-256 084bf10b880534413c65c5b5862f79b8e81553a8f364e5238832ad4c0af71b7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp314-cp314-win32.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba5f8886e850882ff2c2ace5732300e99193823e8107e2c53ef01c1ebfa1e85d
MD5 0fbf8921d2b894ce62c0911c9c7956ff
BLAKE2b-256 bfe973eb8a6789e927816f4705291be21f2225687bfa97321e40cd23055e903a

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19857a358fc811d82227449b7ca40afb46e75b33eb8897240c3839dd8b744218
MD5 3e2d2d23e8b78b943ea9567d9e01e4cf
BLAKE2b-256 4678fc3ade003e22d8bd53aaf8f75f4be48f0b460fa73738f0391b9c856a9147

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9322b563e2661a52e3cdbc93eed3be7748b289f792e0011cb2720d278b366ce2
MD5 eaadfd35b5d6fc85072be02f1b281664
BLAKE2b-256 6fdebf1b60de3dede5c2731e6788617a512bc0ebd9693eac297ee74086f101d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 98cc158c53f46de7bb677fd20c417e264fc02b36d901cc2a43bd6cb0dc6dbfd2
MD5 952ed90b98616da23b8b1a3c84865c08
BLAKE2b-256 41aae7f7ac9a7974f08eff9183e392b2d62516f90412686532d27e196c0f0eeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 334dec28cf20d7f5bb9e45b39546ddf247f8042a690bff9b9573d00086e69cb5
MD5 fff92a35153f9d435132bdd2bcffa0d0
BLAKE2b-256 824b1d0a2b33b3102d210439338e1beea616a6122267c0df459ff0265cd5807a

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f6b56b91bb0ffc328c4e3ed113136cddd9deefdf5f79ab448598b9772831df44
MD5 d2b98901a2d66e667bbe6303eded8f6c
BLAKE2b-256 3c36e9450d62e84a13aea6580c83a47a437f26c7ca6fa0f0fd40b6670793ea30

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: asyncpg-0.31.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 596.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncpg-0.31.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dc5f2fa9916f292e5c5c8b2ac2813763bcd7f58e130055b4ad8a0531314201ab
MD5 dc9d82a3a85effde2a41640ab17cd90a
BLAKE2b-256 9166b25ccb84a246b470eb943b0107c07edcae51804912b824054b3413995a10

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: asyncpg-0.31.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 527.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncpg-0.31.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f890de5e1e4f7e14023619399a471ce4b71f5418cd67a51853b9910fdfa73696
MD5 1fc68c53a8e3e509adbb6627e1d55595
BLAKE2b-256 13a1c5bbeeb8531c05c89135cb8b28575ac2fac618bcb60119ee9696c3faf71c

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp313-cp313-win32.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22bc525ebbdc24d1261ecbf6f504998244d4e3be1721784b5f64664d61fbe602
MD5 c7906c97a6d79b27d6801edecce292bd
BLAKE2b-256 50dc8487df0f69bd398a61e1792b3cba0e47477f214eff085ba0efa7eac9ce87

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0bfbcc5b7ffcd9b75ab1558f00db2ae07db9c80637ad1b2469c43df79d7a5ae2
MD5 c1ab8212bf2d46d154aa85e1deeda2e7
BLAKE2b-256 ae3b60683a0baf50fbc546499cfb53132cb6835b92b529a05f6a81471ab60d0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bef056aa502ee34204c161c72ca1f3c274917596877f825968368b2c33f585f4
MD5 02a0cfbe36c99c337d7e4b289c240639
BLAKE2b-256 12c68c9d076f73f07f995013c791e018a1cd5f31823c2a3187fc8581706aa00f

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c0e0822b1038dc7253b337b0f3f676cadc4ac31b126c5d42691c39691962e403
MD5 13ab7e2a96d56c442ef8ca552fa2bfe4
BLAKE2b-256 2efc9e3486fb2bbe69d4a867c0b76d68542650a7ff1574ca40e84c3111bb0c6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54a64f91839ba59008eccf7aad2e93d6e3de688d796f35803235ea1c4898ae1e
MD5 d5e39c9f02c21dca7b53e81f0bb7d850
BLAKE2b-256 1b71157d611c791a5e2d0423f09f027bd499935f0906e0c2a416ce712ba51ef3

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c204fab1b91e08b0f47e90a75d1b3c62174dab21f670ad6c5d0f243a228f015b
MD5 418e83c5fad3860695f75ec35c788183
BLAKE2b-256 951197b5c2af72a5d0b9bc3fa30cd4b9ce22284a9a943a150fdc768763caf035

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: asyncpg-0.31.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 597.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncpg-0.31.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 72d6bdcbc93d608a1158f17932de2321f68b1a967a13e014998db87a72ed3186
MD5 286214e85c824ad7c73c0f7f648aea8b
BLAKE2b-256 b5f0f2ed1de154e15b107dc692262395b3c17fc34eafe2a78fc2115931561730

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: asyncpg-0.31.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 527.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncpg-0.31.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 027eaa61361ec735926566f995d959ade4796f6a49d3bde17e5134b9964f9ba8
MD5 58ad8b7488620dc83aa6d141d9ee0888
BLAKE2b-256 52b2b20e09670be031afa4cbfabd645caece7f85ec62d69c312239de568e058e

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp312-cp312-win32.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd5b6efff3c17c3202d4b37189969acf8927438a238c6257f66be3c426beba20
MD5 92f15be34a18e31eccf55a9f7fcbbd24
BLAKE2b-256 40ae0fc961179e78cc579e138fad6eb580448ecae64908f95b8cb8ee2f241f67

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3df118d94f46d85b2e434fd62c84cb66d5834d5a890725fe625f498e72e4d5ec
MD5 10e9a0ee1e6e62007ebfe7e6f3785d4b
BLAKE2b-256 7a1acce4c3f246805ecd285a3591222a2611141f1669d002163abef999b60f98

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aad7a33913fb8bcb5454313377cc330fbb19a0cd5faa7272407d8a0c4257b671
MD5 cb9ef35c98e7aedb9cb72ca8e984080e
BLAKE2b-256 8cd1a867c2150f9c6e7af6462637f613ba67f78a314b00db220cd26ff559d532

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 12b3b2e39dc5470abd5e98c8d3373e4b1d1234d9fbdedf538798b2c13c64460a
MD5 0b4eea48d3b036933accb157b41d2a96
BLAKE2b-256 9f623f699ba45d8bd24c5d65392190d19656d74ff0185f42e19d0bbd973bb371

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c89ccf741c067614c9b5fc7f1fc6f3b61ab05ae4aaa966e6fd6b93097c7d20d
MD5 051a1263a92dcc430721e41f7613eee5
BLAKE2b-256 3601ffaa189dcb63a2471720615e60185c3f6327716fdc0fc04334436fbb7c65

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b44c31e1efc1c15188ef183f287c728e2046abb1d26af4d20858215d50d91fad
MD5 5c250e0ab8ff05ddfde8b1f65332c003
BLAKE2b-256 2aa659d0a146e61d20e18db7396583242e32e0f120693b67a8de43f1557033e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: asyncpg-0.31.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 585.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncpg-0.31.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 480c4befbdf079c14c9ca43c8c5e1fe8b6296c96f1f927158d4f1e750aacc047
MD5 9878998c7cb2fbd1d77367b8f39a6fbc
BLAKE2b-256 28fc735af5384c029eb7f1ca60ccb8fa95521dbdaeef788edf4cecfc604c3cab

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: asyncpg-0.31.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 521.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncpg-0.31.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5a4af56edf82a701aece93190cc4e094d2df7d33f6e915c222fb09efbb5afc24
MD5 8927706a44bb3997931a8055a12f3253
BLAKE2b-256 c739cc788dfca3d4060f9d93e67be396ceec458dfc429e26139059e58c2c244d

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp311-cp311-win32.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37fc6c00a814e18eef51833545d1891cac9aa69140598bb076b4cd29b3e010b9
MD5 389a964b3ba31afb0bc810d573797300
BLAKE2b-256 3ef403ff1426acc87be0f4e8d40fa2bff5c3952bef0080062af9efc2212e3be8

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5d5098f63beeae93512ee513d4c0c53dc12e9aa2b7a1af5a81cddf93fe4e4da
MD5 d58a599086e92fb4899151cdf0792b49
BLAKE2b-256 43f401ebb9207f29e645a64699b9ce0eefeff8e7a33494e1d29bb53736f7766b

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c0807be46c32c963ae40d329b3a686356e417f674c976c07fa49f1b30303f109
MD5 d25493b0de812e7d925209e9a1567f64
BLAKE2b-256 e635c27719ae0536c5b6e61e4701391ffe435ef59539e9360959240d6e47c8c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a429e842a3a4b4ea240ea52d7fe3f82d5149853249306f7ff166cb9948faa46c
MD5 4c84a123070f4561f2d817535248f6f2
BLAKE2b-256 d65b4179538a9a72166a0bf60ad783b1ef16efb7960e4d7b9afe9f77a5551680

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2657204552b75f8288de08ca60faf4a99a65deef3a71d1467454123205a88fab
MD5 f392d82977c175fcf07022e611133872
BLAKE2b-256 a4624ded7d400a7b651adf06f49ea8f73100cca07c6df012119594d1e3447aa6

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eee690960e8ab85063ba93af2ce128c0f52fd655fdff9fdb1a28df01329f031d
MD5 3f5e4a034d578e99f06097aa42e91029
BLAKE2b-256 0817cc02bc49bc350623d050fa139e34ea512cd6e020562f2a7312a7bcae4bc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: asyncpg-0.31.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 581.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncpg-0.31.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9ea33213ac044171f4cac23740bed9a3805abae10e7025314cfbd725ec670540
MD5 85ce3f61c1e4bb9aa5a85448139cdb10
BLAKE2b-256 20b49fbb4b0af4e36d96a61d026dd37acab3cf521a70290a09640b215da5ab7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: asyncpg-0.31.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 522.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncpg-0.31.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2d076d42eb583601179efa246c5d7ae44614b4144bc1c7a683ad1222814ed095
MD5 8c55505c2e2b055361d36bf0f21eb14f
BLAKE2b-256 7eec3ebae9dfb23a1bd3f68acfd4f795983b65b413291c0e2b0d982d6ae6c920

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp310-cp310-win32.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8d758dac9d2e723e173d286ef5e574f0b350ec00e9186fce84d0fc5f6a8e6b8
MD5 97632688372528c17a71f6e5ce959528
BLAKE2b-256 5d3f716e10cb57c4f388248db46555e9226901688fbfabd0afb85b5e1d65d5a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 795416369c3d284e1837461909f58418ad22b305f955e625a4b3a2521d80a5f3
MD5 c69d6a77b7bb139c9a18935af4499fb5
BLAKE2b-256 11297e76f2a51f2360a7c90d2cf6d0d9b210c8bb0ae342edebd16173611a55c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8ea599d45c361dfbf398cb67da7fd052affa556a401482d3ff1ee99bd68808a1
MD5 6f218f50cebc09ae23a3fa9926c393c8
BLAKE2b-256 d0981a853f6870ac7ad48383a948c8ff3c85dc278066a4d69fc9af7d3d4b1106

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3faa62f997db0c9add34504a68ac2c342cfee4d57a0c3062fcf0d86c7f9cb1e8
MD5 68d2e6236c42acd4e27ecc9ad53593ed
BLAKE2b-256 e51ede2177e57e03a06e697f6c1ddf2a9a7fcfdc236ce69966f54ffc830fd481

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b17c89312c2f4ccea222a3a6571f7df65d4ba2c0e803339bfc7bed46a96d3be
MD5 c641fc350da01bd5c37b1450840d26e9
BLAKE2b-256 ea03f93b5e543f65c5f504e91405e8d21bb9e600548be95032951a754781a41d

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 831712dd3cf117eec68575a9b50da711893fd63ebe277fc155ecae1c6c9f0f61
MD5 6314b72eb35842cee1eb7b80fb2b42fb
BLAKE2b-256 c3d9507c80bdac2e95e5a525644af94b03fa7f9a44596a84bd48a6e80f854f92

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: asyncpg-0.31.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 582.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncpg-0.31.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c1e1ab5bc65373d92dd749d7308c5b26fb2dc0fbe5d3bf68a32b676aa3bcd24a
MD5 ee98ea6b656d654971ca1d1b1af46cc4
BLAKE2b-256 c503ea5fd3fa18a26ba1aa663fce57620238d7e413d262dda284b71631ca8d2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp39-cp39-win_amd64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: asyncpg-0.31.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 522.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncpg-0.31.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c1a9c5b71d2371a2290bc93336cd05ba4ec781683cab292adbddc084f89443c6
MD5 0d464271a8f95703d93d6ce1faa2e4aa
BLAKE2b-256 887a04dcdc53e4e255e4f60e68fc1934e5523fa5654ec1b51e2c75d0657004a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp39-cp39-win32.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37a58919cfef2448a920df00d1b2f821762d17194d0dbf355d6dde8d952c04f9
MD5 8c9d39146a9384ac9a75f58763533418
BLAKE2b-256 af3be9a33ab89fe9bd4c6fb7a9e0707f0e7656e07dd2af5fff8a5375c13b03b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22be6e02381bab3101cd502d9297ac71e2f966c86e20e78caead9934c98a8af6
MD5 7d2ba571d4f21858c35017deedc37f91
BLAKE2b-256 1368cb5d6a43d34e5735928fb745b4087cee2d7e6b8b0cc902ad520520cfd16f

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb223567dea5f47c45d347f2bde5486be8d9f40339f27217adb3fb1c3be51298
MD5 ae55949131545e073e3926de40ca05a0
BLAKE2b-256 969c7426e5f4483acc5b2622091b2ae6dd44e1a490847aff434c0bc7c99d1242

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bc2b685f400ceae428f79f78b58110470d7b4466929a7f78d455964b17ad1008
MD5 8507531a4d183ee9338cf47ecbcfc790
BLAKE2b-256 609f1f9491f6b73096e1d5eb0da2207ddbde3f9b1fc0ea926183f0f5eadfdd05

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6974f36eb9a224d8fb428bcf66bd411aa12cf57c2967463178149e73d4de366
MD5 5ca9a3b772eacf1eb91250628f867560
BLAKE2b-256 1338bbb09ea041a935dc7720e283b6876c3487ace4b180b8d58c07db6cd8c941

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncpg-0.31.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.31.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ebb3cde58321a1f89ce41812be3f2a98dddedc1e76d0838aba1d724f1e4e1a95
MD5 774417937a2dd8ac4a79adf97fa1c98b
BLAKE2b-256 3df9104361bb10203039569eb56fdd4eddb185d7480cec71d5f93d4c5454142d

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncpg-0.31.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release.yml on MagicStack/asyncpg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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