Skip to content

noteable-io/asyncpg-crdb-noteable

This branch is 7 commits ahead of, 103 commits behind MagicStack/asyncpg:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

47d0e25 · Aug 1, 2022
Nov 16, 2021
Aug 1, 2022
Nov 16, 2021
Nov 16, 2021
Nov 16, 2021
Jul 20, 2016
Aug 15, 2020
Oct 3, 2019
Oct 2, 2018
Jul 16, 2016
Sep 12, 2017
Apr 26, 2021
Nov 16, 2021
Nov 16, 2021
Dec 2, 2020
Nov 16, 2021
Aug 10, 2021
Nov 16, 2021

Repository files navigation

asyncpg -- A fast PostgreSQL Database Client Library for Python/asyncio

GitHub Actions status

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.

About

A fast CockroachDB Database Client Library for Python/asyncio.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 71.6%
  • Cython 25.4%
  • C 2.9%
  • Makefile 0.1%