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.6 or later and is supported for PostgreSQL versions 9.5 to 14. 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, 3x faster than psycopg2 (and its asyncio variant – aiopg).

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

The above results are a geometric mean of benchmarks obtained with PostgreSQL client driver benchmarking toolbench in November 2020 (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.25.0.tar.gz (804.3 kB view details)

Uploaded Source

Built Distributions

asyncpg-0.25.0-cp310-cp310-win_amd64.whl (525.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

asyncpg-0.25.0-cp310-cp310-win32.whl (478.3 kB view details)

Uploaded CPython 3.10 Windows x86

asyncpg-0.25.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.25.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

asyncpg-0.25.0-cp310-cp310-macosx_10_9_x86_64.whl (651.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

asyncpg-0.25.0-cp39-cp39-win_amd64.whl (525.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

asyncpg-0.25.0-cp39-cp39-win32.whl (477.8 kB view details)

Uploaded CPython 3.9 Windows x86

asyncpg-0.25.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.25.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

asyncpg-0.25.0-cp39-cp39-macosx_10_9_x86_64.whl (650.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

asyncpg-0.25.0-cp38-cp38-win_amd64.whl (526.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

asyncpg-0.25.0-cp38-cp38-win32.whl (479.3 kB view details)

Uploaded CPython 3.8 Windows x86

asyncpg-0.25.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.25.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

asyncpg-0.25.0-cp38-cp38-macosx_10_9_x86_64.whl (643.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

asyncpg-0.25.0-cp37-cp37m-win_amd64.whl (506.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

asyncpg-0.25.0-cp37-cp37m-win32.whl (464.3 kB view details)

Uploaded CPython 3.7m Windows x86

asyncpg-0.25.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.25.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

asyncpg-0.25.0-cp37-cp37m-macosx_10_9_x86_64.whl (627.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

asyncpg-0.25.0-cp36-cp36m-win_amd64.whl (507.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

asyncpg-0.25.0-cp36-cp36m-win32.whl (465.7 kB view details)

Uploaded CPython 3.6m Windows x86

asyncpg-0.25.0-cp36-cp36m-musllinux_1_1_x86_64.whl (2.9 MB view details)

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

asyncpg-0.25.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

asyncpg-0.25.0-cp36-cp36m-macosx_10_9_x86_64.whl (625.6 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: asyncpg-0.25.0.tar.gz
  • Upload date:
  • Size: 804.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for asyncpg-0.25.0.tar.gz
Algorithm Hash digest
SHA256 63f8e6a69733b285497c2855464a34de657f2cccd25aeaeeb5071872e9382540
MD5 65e9cf526fa347f6bd2aebb81b20fd52
BLAKE2b-256 38804c03e190c86c78a5a85b440a5f719dd42c388c5976ab327c6358f5b86514

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncpg-0.25.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 525.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for asyncpg-0.25.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 56d88d7ef4341412cd9c68efba323a4519c916979ba91b95d4c08799d2ff0c09
MD5 4bbfd780165d23890af278e6676553bd
BLAKE2b-256 a25e403d7e4e206b9ca031d47875b6d88ae8442ce1c90bf6a55c6b0cf3f4ddfc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncpg-0.25.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 478.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for asyncpg-0.25.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 43cde84e996a3afe75f325a68300093425c2f47d340c0fc8912765cf24a1c095
MD5 39ba8b8430ff934ca44c7785a06dcdcd
BLAKE2b-256 00b41f4699643c090db6ade5991272d0c6c75c570b5e46632bad71e8cbb0bd5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncpg-0.25.0-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for asyncpg-0.25.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1a70783f6ffa34cc7dd2de20a873181414a34fd35a4a208a1f1a7f9f695e4ec4
MD5 7b3da025311da1e8255b5e17ba8d078e
BLAKE2b-256 48ba572ade0c41bc4bfd4804b7d35ebd49a94293f37aded6acef528d25a11a0f

See more details on using hashes here.

File details

Details for the file asyncpg-0.25.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.25.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2bc197fc4aca2fd24f60241057998124012469d2e414aed3f992579db0c88e3a
MD5 d8ece8cb0288433a8090fdd9a3573558
BLAKE2b-256 b40010f2add0c7ca3963c7b273abd2299b9c2190967ee56758a1a233049deca7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncpg-0.25.0-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 651.8 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for asyncpg-0.25.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf5e3408a14a17d480f36ebaf0401a12ff6ae5457fdf45e4e2775c51cc9517d3
MD5 1b23e2838188fcc573b1edbcf314298d
BLAKE2b-256 2e708305c9891742a4e767b6257708195ed9a72dec90e0169a85d930bc845f0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncpg-0.25.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 525.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for asyncpg-0.25.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 649e2966d98cc48d0646d9a4e29abecd8b59d38d55c256d5c857f6b27b7407ac
MD5 2253bb4ceb710a5011e9475773e7472c
BLAKE2b-256 37866ce39f0cf540a7f8ab4c89f1359936e776203ffcfdb65172f476a50c3748

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncpg-0.25.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 477.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for asyncpg-0.25.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f55918ded7b85723a5eaeb34e86e7b9280d4474be67df853ab5a7fa0cc7c6bf2
MD5 3fb0d6fff1b145c1573acb56f4e90a1f
BLAKE2b-256 8cc5f0ac7733b2ebe1646a463cb15044e82c3797816eeffeaad4013c1c09ace4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncpg-0.25.0-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for asyncpg-0.25.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5e4105f57ad1e8fbc8b1e535d8fcefa6ce6c71081228f08680c6dea24384ff0e
MD5 153abc48932ab0058963d25de59d2c87
BLAKE2b-256 f9b85322513dc34748338d87b8e290f229efa62ec64cd7a031d930e869937301

See more details on using hashes here.

File details

Details for the file asyncpg-0.25.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.25.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a738f1b2876f30d710d3dc1e7858160a0afe1603ba16bf5f391f5316eb0ed855
MD5 168a98e3d5596f17e33296371e17f907
BLAKE2b-256 73c4cb5ebb4938fc927a9e141e374b549995c40e234dd89ba2d28a382ee824a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncpg-0.25.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 650.8 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for asyncpg-0.25.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 52fab7f1b2c29e187dd8781fce896249500cf055b63471ad66332e537e9b5f7e
MD5 042a223c7f714785ff6eb201ff9aab72
BLAKE2b-256 a15baf645d09670ac6c610efe5c1baecbb313ca342fee389d461cf9dfc07b4e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncpg-0.25.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 526.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for asyncpg-0.25.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 191fe6341385b7fdea7dbdcf47fd6db3fd198827dcc1f2b228476d13c05a03c6
MD5 8a0712afab2b960758cf27d8e678abbc
BLAKE2b-256 e82e914a330795915fd374235c65ae49a6f4a564ec097de736a092d7ac9d93bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncpg-0.25.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 479.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for asyncpg-0.25.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 18d49e2d93a7139a2fdbd113e320cc47075049997268a61bfbe0dde680c55471
MD5 2750aef06f46af7ff0a281a2743999ea
BLAKE2b-256 1a6779dc2590ed26496d8e985a25ddecceb4f0a913583edcb22322c8fc808a38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncpg-0.25.0-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for asyncpg-0.25.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 739bbd7f89a2b2f6bc44cb8bf967dab12c5bc714fcbe96e68d512be45ecdf962
MD5 65b2bbe94de37e5fef85ae55f82b1436
BLAKE2b-256 57b758477c43633df997d65c731c37f73b937012627ed5ae79199a71c1b99fc3

See more details on using hashes here.

File details

Details for the file asyncpg-0.25.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.25.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4327f691b1bdb222df27841938b3e04c14068166b3a97491bec2cb982f49f03e
MD5 2ea9ed9cacaf26a06615e18b3d5cedcf
BLAKE2b-256 9202a776123f8a88e1e9f493d1026029e657be99a775693e708c7e3973e2e2b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncpg-0.25.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 643.2 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for asyncpg-0.25.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 72a1e12ea0cf7c1e02794b697e3ca967b2360eaa2ce5d4bfdd8604ec2d6b774b
MD5 146d698f70eea76c0a3f7139175bb218
BLAKE2b-256 bb57a9d9b86c176fe6d872fa49198c958f78cad5027657809564c2cfb959aad9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncpg-0.25.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 506.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for asyncpg-0.25.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 fe471ccd915b739ca65e2e4dbd92a11b44a5b37f2e38f70827a1c147dafe0fa8
MD5 8dc2378190bcdd097cd16896e02f5a52
BLAKE2b-256 345a5605dd204a8157b4bf4cc40dbf8fc629e073e15f14da357b5d8c91b7aa9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncpg-0.25.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 464.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for asyncpg-0.25.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 863d36eba4a7caa853fd7d83fad5fd5306f050cc2fe6e54fbe10cdb30420e5e9
MD5 f7d6f3740ffbfeacdfde14775623d2c8
BLAKE2b-256 7e71694d125a60efa0aad6a8f7c37fac9f67050761f802ec3c83175b830a00d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncpg-0.25.0-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for asyncpg-0.25.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2633331cbc8429030b4f20f712f8d0fbba57fa8555ee9b2f45f981b81328b256
MD5 f7fd7d54f688adbef311dee29a1d9684
BLAKE2b-256 754924a35038f871bbf89daa0a5d0c4ebb4ea8ebd9a9615b6b1325f4750025ec

See more details on using hashes here.

File details

Details for the file asyncpg-0.25.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.25.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0a61fb196ce4dae2f2fa26eb20a778db21bbee484d2e798cb3cc988de13bdd1b
MD5 568e5e4d2c7cf3518c03c50827bc9e65
BLAKE2b-256 f9429cbf53fc841a483a56acb460930e1f961253632b5e3089b61630d862b16e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncpg-0.25.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 627.7 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for asyncpg-0.25.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 acb311722352152936e58a8ee3c5b8e791b24e84cd7d777c414ff05b3530ca68
MD5 3252e5a8356e459d7125253dc8523daa
BLAKE2b-256 d45e291adf1e94c5e4a3cff6ae5f6360dcdcb2ec122f95660de1cb363b040fdd

See more details on using hashes here.

File details

Details for the file asyncpg-0.25.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: asyncpg-0.25.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 507.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for asyncpg-0.25.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 bf6dc9b55b9113f39eaa2057337ce3f9ef7de99a053b8a16360395ce588925cd
MD5 68b1db5e51afc0853849b40977fed8be
BLAKE2b-256 2713f1541941d0f8012d49e8438744516e4cc723e2fcfcffaa34371255c1d335

See more details on using hashes here.

File details

Details for the file asyncpg-0.25.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: asyncpg-0.25.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 465.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for asyncpg-0.25.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ddb4c3263a8d63dcde3d2c4ac1c25206bfeb31fa83bd70fd539e10f87739dee4
MD5 8a70011482df2d85bb06740dbb97b39b
BLAKE2b-256 36ef668552be8d5f5c287788138a7ace7ade908c42210668a85aaf31a2f69f97

See more details on using hashes here.

File details

Details for the file asyncpg-0.25.0-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: asyncpg-0.25.0-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for asyncpg-0.25.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6f8f5fc975246eda83da8031a14004b9197f510c41511018e7b1bedde6968e92
MD5 0639e977a9c42740727455739c1a94c8
BLAKE2b-256 0ab969c55a961a942531d5277839625da5adcc1778f8961da89cf87b87dec3a0

See more details on using hashes here.

File details

Details for the file asyncpg-0.25.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for asyncpg-0.25.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 beaecc52ad39614f6ca2e48c3ca15d56e24a2c15cbfdcb764a4320cc45f02fd5
MD5 255c062d2f5e3c9e3b6a52e460513bbc
BLAKE2b-256 8a4c8830fea0273e2337b8fa8e4d9d79dd47a9997449f0997600282624af43a5

See more details on using hashes here.

File details

Details for the file asyncpg-0.25.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: asyncpg-0.25.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 625.6 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for asyncpg-0.25.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a84d30e6f850bac0876990bcd207362778e2208df0bee8be8da9f1558255e634
MD5 a0fa47b45db7e5389313e0f9f1bb82c4
BLAKE2b-256 65d581eb2cbab28d9307078e35e92b19f0f100217fc52d420125c0f8914bddf0

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