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.7 or later and is supported for PostgreSQL versions 9.5 to 15. Older 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 and has no dependencies. Use pip to install:

$ pip install asyncpg

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()

loop = asyncio.get_event_loop()
loop.run_until_complete(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.28.0.tar.gz (808.0 kB view details)

Uploaded Source

Built Distributions

asyncpg-0.28.0-cp311-cp311-win_amd64.whl (534.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

asyncpg-0.28.0-cp311-cp311-win32.whl (487.8 kB view details)

Uploaded CPython 3.11 Windows x86

asyncpg-0.28.0-cp311-cp311-musllinux_1_1_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

asyncpg-0.28.0-cp311-cp311-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

asyncpg-0.28.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

asyncpg-0.28.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

asyncpg-0.28.0-cp311-cp311-macosx_11_0_arm64.whl (629.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

asyncpg-0.28.0-cp311-cp311-macosx_10_9_x86_64.whl (642.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

asyncpg-0.28.0-cp310-cp310-win_amd64.whl (543.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

asyncpg-0.28.0-cp310-cp310-win32.whl (493.9 kB view details)

Uploaded CPython 3.10 Windows x86

asyncpg-0.28.0-cp310-cp310-musllinux_1_1_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

asyncpg-0.28.0-cp310-cp310-musllinux_1_1_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

asyncpg-0.28.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

asyncpg-0.28.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

asyncpg-0.28.0-cp310-cp310-macosx_11_0_arm64.whl (639.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

asyncpg-0.28.0-cp310-cp310-macosx_10_9_x86_64.whl (659.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

asyncpg-0.28.0-cp39-cp39-win_amd64.whl (557.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

asyncpg-0.28.0-cp39-cp39-win32.whl (505.9 kB view details)

Uploaded CPython 3.9 Windows x86

asyncpg-0.28.0-cp39-cp39-musllinux_1_1_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

asyncpg-0.28.0-cp39-cp39-musllinux_1_1_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

asyncpg-0.28.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

asyncpg-0.28.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

asyncpg-0.28.0-cp39-cp39-macosx_11_0_arm64.whl (654.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

asyncpg-0.28.0-cp39-cp39-macosx_10_9_x86_64.whl (675.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

asyncpg-0.28.0-cp38-cp38-win_amd64.whl (557.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

asyncpg-0.28.0-cp38-cp38-win32.whl (506.9 kB view details)

Uploaded CPython 3.8 Windows x86

asyncpg-0.28.0-cp38-cp38-musllinux_1_1_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

asyncpg-0.28.0-cp38-cp38-musllinux_1_1_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

asyncpg-0.28.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

asyncpg-0.28.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

asyncpg-0.28.0-cp38-cp38-macosx_11_0_arm64.whl (650.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

asyncpg-0.28.0-cp38-cp38-macosx_10_9_x86_64.whl (667.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

asyncpg-0.28.0-cp37-cp37m-win_amd64.whl (534.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

asyncpg-0.28.0-cp37-cp37m-win32.whl (497.6 kB view details)

Uploaded CPython 3.7m Windows x86

asyncpg-0.28.0-cp37-cp37m-musllinux_1_1_x86_64.whl (2.9 MB view details)

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

asyncpg-0.28.0-cp37-cp37m-musllinux_1_1_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

asyncpg-0.28.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

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

asyncpg-0.28.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

asyncpg-0.28.0-cp37-cp37m-macosx_10_9_x86_64.whl (652.8 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: asyncpg-0.28.0.tar.gz
  • Upload date:
  • Size: 808.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for asyncpg-0.28.0.tar.gz
Algorithm Hash digest
SHA256 7252cdc3acb2f52feaa3664280d3bcd78a46bd6c10bfd681acfffefa1120e278
MD5 a885e759ca4dedcb541b6388650c1cd5
BLAKE2b-256 a981d86b6d6b6d643d9d3ea3926078965ae321b3aa1734a45ce8dca726a455f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncpg-0.28.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 534.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for asyncpg-0.28.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5e7337c98fb493079d686a4a6965e8bcb059b8e1b8ec42106322fc6c1c889bb0
MD5 843ca2f4c99cb3ac68436ea7a985b09a
BLAKE2b-256 17154fb6d6dbe7c43ac7b31064bb465448d856d8db9fada3ca84a4ed13ebcde4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncpg-0.28.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 487.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for asyncpg-0.28.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f33c5685e97821533df3ada9384e7784bd1e7865d2b22f153f2e4bd4a083e102
MD5 c8788b42de4a40899d01bae8c60159de
BLAKE2b-256 bbb822e1e2ee56d0052875076864fc5f7df3839446737bde8750334695edf64a

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d7fa81ada2807bc50fea1dc741b26a4e99258825ba55913b0ddbf199a10d69d8
MD5 f8ed4906a19360c66571b8a260fd6d9e
BLAKE2b-256 b2d7d3b200875a6ade702c9c1cb14311b1a9481e8ed7b9a894b1b9d311638517

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ad1d6abf6c2f5152f46fff06b0e74f25800ce8ec6c80967f0bc789974de3c652
MD5 9eea0f5ba262772143192b690ff265ac
BLAKE2b-256 c527b3b1bd83c73c4836a5a994bc782d86ccf944da1d858885b71099e8da104c

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f029c5adf08c47b10bcdc857001bbef551ae51c57b3110964844a9d79ca0f267
MD5 0111b5a55e6c68b2edf4b48acf03e823
BLAKE2b-256 77a488069f7935b14c58534442a57be3299179eb46aace2d3c8716be199ff6a6

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99417210461a41891c4ff301490a8713d1ca99b694fef05dabd7139f9d64bd6c
MD5 ee5c886ae3a240647bf40d7149daeec4
BLAKE2b-256 2d8925005cc5bd0089193e954de06cb993ff1a9590958c15ac67c412b06bb00a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b24e521f6060ff5d35f761a623b0042c84b9c9b9fb82786aadca95a9cb4a893b
MD5 a572a993821bde969c41c60b66fa85ff
BLAKE2b-256 a9dccbd7d8ce5671824b1f35d8b6d3b773e874d1afeaed73a0fbcee7def33a51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a0e08fe2c9b3618459caaef35979d45f4e4f8d4f79490c9fa3367251366af207
MD5 747fe94108fc8ba3cc775dd0540b4e81
BLAKE2b-256 f35d2b5f88592a75aa29b18d62f6d665457dd0df529b6a3317311b4e7b95f754

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncpg-0.28.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 543.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for asyncpg-0.28.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 76aacdcd5e2e9999e83c8fbcb748208b60925cc714a578925adcb446d709016c
MD5 5e8b7e1ca54c1bebe6a717bf7becd581
BLAKE2b-256 249c2e8c924199a495149acb358b75d01703381e670c01d69fc68fa5549baaa4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncpg-0.28.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 493.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for asyncpg-0.28.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 90a7bae882a9e65a9e448fdad3e090c2609bb4637d2a9c90bfdcebbfc334bf89
MD5 cd77b7e76ec5d0138bc6c8760536617c
BLAKE2b-256 ddea7df78ecbee0917b4ca57eca6e0d998b2fa03240f5b2a1fb20e8c799e3743

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c88eef5e096296626e9688f00ab627231f709d0e7e3fb84bb4413dff81d996d7
MD5 bb48ff1cb88524c82c677b15f42378c6
BLAKE2b-256 6e1658dbc3e17066f88ae639c90db406f611402d4d8bf6558db60db4c8aab982

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0c402745185414e4c204a02daca3d22d732b37359db4d2e705172324e2d94e85
MD5 189bae5b9581aa4a8bd171fd8d67a941
BLAKE2b-256 07204c6f1215cc7e65a363a2eba4d44f846341c3912a8c8543b68f3cbc425c7a

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86b339984d55e8202e0c4b252e9573e26e5afa05617ed02252544f7b3e6de3e9
MD5 11f2a56df9ac1415ddbc45f6d5490c47
BLAKE2b-256 315b7b68ad56239bd0d9c229950e2375f3c6a50210cf81ee2032a802bc3a6587

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e907cf620a819fab1737f2dd90c0f185e2a796f139ac7de6aa3212a8af96c050
MD5 94dffef3716fe7d398c4ef7b3563065a
BLAKE2b-256 77c490a9b1658e66c287d081455df34656cd69143f5ffcf96382c8fba2f2be4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0740f836985fd2bd73dca42c50c6074d1d61376e134d7ad3ad7566c4f79f8184
MD5 8bb9886ef147f44dfc59428affc1e92d
BLAKE2b-256 afe63dd1bb4160fcec865035b97768f038a0694aef486c7c47b818f2487ac156

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0a6d1b954d2b296292ddff4e0060f494bb4270d87fb3655dd23c5c6096d16d83
MD5 f3db4f81422e7d0921da4db7ceb2a953
BLAKE2b-256 0d220b27112ca856b94c5a65748ee2c814ffb9c47fcbd5b6445a970d35edc6b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncpg-0.28.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 557.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for asyncpg-0.28.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3ed77f00c6aacfe9d79e9eff9e21729ce92a4b38e80ea99a58ed382f42ebd55b
MD5 b8e8136669ac6e0e5c1a980957cc524e
BLAKE2b-256 9edd956e3f1c97f476ab321fa74edfcbfeb3346424f93ae058c27565ef7311ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncpg-0.28.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 505.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for asyncpg-0.28.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 41e97248d9076bc8e4849da9e33e051be7ba37cd507cbd51dfe4b2d99c70e3dc
MD5 ff8bdf5d97acae172516a92182c50a58
BLAKE2b-256 fd6ef97c87396191e1ffdc1cad2160894ce511b17af0dfa893540cd15035153e

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e9c433f6fcdd61c21a715ee9128a3ca48be8ac16fa07be69262f016bb0f4dbd2
MD5 74203c3545b8a8a92bd649fe8eb332dc
BLAKE2b-256 c87afd3dda0bb33b653b388f746297242bf0840596dbd0b4f703bbf960214c83

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5e18438a0730d1c0c1715016eacda6e9a505fc5aa931b37c97d928d44941b4bf
MD5 cb29bd9a1c9326330170c82a2ac4b900
BLAKE2b-256 385aab6b1ec19d6dd3d897c4a67d7ab1bc59a99fb0d8da6e37d1c04be3db5749

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8858f713810f4fe67876728680f42e93b7e7d5c7b61cf2118ef9153ec16b9423
MD5 ce285285748f1cca0040e16716b76c29
BLAKE2b-256 6b26c4585fa6e2cbb172e6bfb1cdbb975f15253a7efd486d0b0a32c9aeef091b

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b48ceed606cce9e64fd5480a9b0b9a95cea2b798bb95129687abd8599c8b019
MD5 209222c2dc077c24fd1e3e48044f8c5a
BLAKE2b-256 1115465aef348d0e50b0aa9988b2f8719ab4409f15f51c608ef7dcf899f9329d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec46a58d81446d580fb21b376ec6baecab7288ce5a578943e2fc7ab73bf7eb39
MD5 3a7b5c51a362b8a5893d3d544bd17fb2
BLAKE2b-256 eb458f85f274fd001305ba5e372c3d576f86994d8e05c71daebbd5040f662b6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d009b08602b8b18edef3a731f2ce6d3f57d8dac2a0a4140367e194eabd3de457
MD5 c06f893d28111f2d4c06773ca06ef917
BLAKE2b-256 5202df86d7824dc7b9b9a2b9159886d4c3f0d8c0dd5e0813293cdc412af3a3dc

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: asyncpg-0.28.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 557.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for asyncpg-0.28.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8ba7d06a0bea539e0487234511d4adf81dc8762249858ed2a580534e1720db00
MD5 e8b3a2fd4248316004dda736ca7000e2
BLAKE2b-256 58be811590046e8f49968d920cd2b4324a9d2a3cba3f891915d5ef4704085471

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: asyncpg-0.28.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 506.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for asyncpg-0.28.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9e721dccd3838fcff66da98709ed884df1e30a95f6ba19f595a3706b4bc757e3
MD5 75315df8cefa6f6127df7027b005e968
BLAKE2b-256 cbfb063e57efb549a5ae2d0a3fae6fdb363d60f35e465fff557c2a99a6eaacf5

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fc9e9f9ff1aa0eddcc3247a180ac9e9b51a62311e988809ac6152e8fb8097756
MD5 912584e68eb0e170eb61c37d4aea087c
BLAKE2b-256 41fb7e3a6a4f911f6db47deefa4cabb85a58e0753f94783ac38250f3f2e76c85

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 59f9712ce01e146ff71d95d561fb68bd2d588a35a187116ef05028675462d5ed
MD5 658edd79b841be4ef171a8f548f859c3
BLAKE2b-256 82219a21b35446fed29a5f7361267da3058c90f482abc0f0d59cef8ec38bf279

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f20cac332c2576c79c2e8e6464791c1f1628416d1115935a34ddd7121bfc6a4
MD5 365fc36dadc7ca59f53b46617fad0741
BLAKE2b-256 2251bdfd91b52ec22c5f0bda570c6a066f1fa59c738b151fe66577b62da753ef

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4f62f04cdf38441a70f279505ef3b4eadf64479b17e707c950515846a2df197
MD5 26e1242a004179708617469ec50942f3
BLAKE2b-256 3b3f733a6352c11646f950a12c46c629d5596263c361cd0698161ee8a2e32d23

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d32b680a9b16d2957a0a3cc6b7fa39068baba8e6b728f2e0a148a67644578f4
MD5 318ce07a9e636cb312fb0a662bf519ff
BLAKE2b-256 9b26095da5f88989d02ae6863b41fadd7eb7f134a6f1064d5c585d8913ea2f2d

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b337ededaabc91c26bf577bfcd19b5508d879c0ad009722be5bb0a9dd30b85a0
MD5 844e0ae24a475eeccf9ff73707cd3ffc
BLAKE2b-256 1924e70e2be47d89a2dd6da224ba749efd7a736c0557994f815bac9f0ee38a3c

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: asyncpg-0.28.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 534.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for asyncpg-0.28.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 319f5fa1ab0432bc91fb39b3960b0d591e6b5c7844dafc92c79e3f1bff96abef
MD5 da3b26ab7efca217d5712e548f63f9c7
BLAKE2b-256 8ab01c2e9b17f3fc62d10ecda123ebb59032c387a060ea5a17f875941fc9a487

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: asyncpg-0.28.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 497.6 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for asyncpg-0.28.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8aec08e7310f9ab322925ae5c768532e1d78cfb6440f63c078b8392a38aa636a
MD5 06270863cfaf4077527f14ae0e5d587a
BLAKE2b-256 c83413fbd51b7a9d3765bcbc536002b8347d70c94d5f556454177f938b45ef80

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d14681110e51a9bc9c065c4e7944e8139076a778e56d6f6a306a26e740ed86d2
MD5 e7d2e8d07c922b59148e849fccab1a57
BLAKE2b-256 b0df0c4692f1e4c9b98377d944822aec69f327293cccd4dfe9029120fb06d090

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a93a94ae777c70772073d0512f21c74ac82a8a49be3a1d982e3f259ab5f27307
MD5 947f6af0fc9a5f82ef449662391ab15c
BLAKE2b-256 1fc3e9f573c93407c87e950e3322ff0b6aae5fcb2d2c0b16e1e1df5ef7637984

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63861bb4a540fa033a56db3bb58b0c128c56fad5d24e6d0a8c37cb29b17c1c7d
MD5 2f3a27b2ae205ac21ee5405a5b250ac9
BLAKE2b-256 9e2e9a2a9e5a7d84bbc63df0c6e28986c48bd32162a6efbe96f0b6c215252be2

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4acd6830a7da0eb4426249d71353e8895b350daae2380cb26d11e0d4a01c5472
MD5 7c42c5073039afe566a1c4531945b4d4
BLAKE2b-256 b72f343aa00af74bba48b26e73c49d6e0cfb891f984515d5d8655b0a343df7e5

See more details on using hashes here.

File details

Details for the file asyncpg-0.28.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.28.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c56092465e718a9fdcc726cc3d9dcf3a692e4834031c9a9f871d92a75d20d48
MD5 6657e833523fa8f7d23bc7d686d25c7d
BLAKE2b-256 a8f020b65faa802de2271f6df31fc71eb38d20bd92171b4bbe140c2cec2c2ef8

See more details on using hashes here.

Supported by

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