asyncpg 0.30.0


pip install asyncpg

  Latest version

Released: Oct 20, 2024

Project Links

Meta
Author: MagicStack Inc
Requires Python: >=3.8.0

Classifiers

Development Status
  • 5 - Production/Stable

Framework
  • AsyncIO

Intended Audience
  • Developers

License
  • OSI Approved :: Apache Software License

Operating System
  • POSIX
  • MacOS :: MacOS X
  • Microsoft :: Windows

Programming Language
  • Python :: 3 :: Only
  • Python :: 3.8
  • Python :: 3.9
  • Python :: 3.10
  • Python :: 3.11
  • Python :: 3.12
  • Python :: Implementation :: CPython

Topic
  • Database :: Front-Ends
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.8 or later and is supported for PostgreSQL versions 9.5 to 17. 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.

Wheel compatibility matrix

Platform CPython 3.8 CPython 3.9 CPython 3.10 CPython 3.11 CPython 3.12 CPython 3.13
macosx_10_13_x86_64
macosx_10_9_x86_64
macosx_11_0_arm64
manylinux2014_aarch64
manylinux2014_x86_64
manylinux_2_17_aarch64
manylinux_2_17_x86_64
musllinux_1_2_aarch64
musllinux_1_2_x86_64
win32
win_amd64

Files in release

asyncpg-0.30.0-cp310-cp310-macosx_10_9_x86_64.whl (657.4KiB)
asyncpg-0.30.0-cp310-cp310-macosx_11_0_arm64.whl (629.9KiB)
asyncpg-0.30.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8MiB)
asyncpg-0.30.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8MiB)
asyncpg-0.30.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.8MiB)
asyncpg-0.30.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.9MiB)
asyncpg-0.30.0-cp310-cp310-win32.whl (555.4KiB)
asyncpg-0.30.0-cp310-cp310-win_amd64.whl (611.1KiB)
asyncpg-0.30.0-cp311-cp311-macosx_10_9_x86_64.whl (658.7KiB)
asyncpg-0.30.0-cp311-cp311-macosx_11_0_arm64.whl (630.8KiB)
asyncpg-0.30.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9MiB)
asyncpg-0.30.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0MiB)
asyncpg-0.30.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.9MiB)
asyncpg-0.30.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.0MiB)
asyncpg-0.30.0-cp311-cp311-win32.whl (554.1KiB)
asyncpg-0.30.0-cp311-cp311-win_amd64.whl (614.6KiB)
asyncpg-0.30.0-cp312-cp312-macosx_10_13_x86_64.whl (657.4KiB)
asyncpg-0.30.0-cp312-cp312-macosx_11_0_arm64.whl (622.1KiB)
asyncpg-0.30.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3MiB)
asyncpg-0.30.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4MiB)
asyncpg-0.30.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.3MiB)
asyncpg-0.30.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.5MiB)
asyncpg-0.30.0-cp312-cp312-win32.whl (547.1KiB)
asyncpg-0.30.0-cp312-cp312-win_amd64.whl (606.5KiB)
asyncpg-0.30.0-cp313-cp313-macosx_10_13_x86_64.whl (654.7KiB)
asyncpg-0.30.0-cp313-cp313-macosx_11_0_arm64.whl (619.9KiB)
asyncpg-0.30.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3MiB)
asyncpg-0.30.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4MiB)
asyncpg-0.30.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.3MiB)
asyncpg-0.30.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.5MiB)
asyncpg-0.30.0-cp313-cp313-win32.whl (547.3KiB)
asyncpg-0.30.0-cp313-cp313-win_amd64.whl (607.1KiB)
asyncpg-0.30.0-cp38-cp38-macosx_10_9_x86_64.whl (656.2KiB)
asyncpg-0.30.0-cp38-cp38-macosx_11_0_arm64.whl (629.2KiB)
asyncpg-0.30.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2MiB)
asyncpg-0.30.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2MiB)
asyncpg-0.30.0-cp38-cp38-musllinux_1_2_aarch64.whl (3.1MiB)
asyncpg-0.30.0-cp38-cp38-musllinux_1_2_x86_64.whl (3.3MiB)
asyncpg-0.30.0-cp38-cp38-win32.whl (556.4KiB)
asyncpg-0.30.0-cp38-cp38-win_amd64.whl (613.7KiB)
asyncpg-0.30.0-cp39-cp39-macosx_10_9_x86_64.whl (657.3KiB)
asyncpg-0.30.0-cp39-cp39-macosx_11_0_arm64.whl (629.6KiB)
asyncpg-0.30.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8MiB)
asyncpg-0.30.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8MiB)
asyncpg-0.30.0-cp39-cp39-musllinux_1_2_aarch64.whl (2.8MiB)
asyncpg-0.30.0-cp39-cp39-musllinux_1_2_x86_64.whl (2.9MiB)
asyncpg-0.30.0-cp39-cp39-win32.whl (556.1KiB)
asyncpg-0.30.0-cp39-cp39-win_amd64.whl (611.9KiB)
asyncpg-0.30.0.tar.gz (935.3KiB)
Extras:
Dependencies:
async-timeout (>=4.0.3)