asyncpg 0.11.0
An asyncio PosgtreSQL driver
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.5 or later and is supported for PostgreSQL versions 9.1 to 9.6.
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).
The above results are a geometric mean of benchmarks obtained with PostgreSQL client driver benchmarking toolbench.
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''') 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.
| File | Type | Py Version | Uploaded on | Size | |
|---|---|---|---|---|---|
| asyncpg-0.11.0-cp35-cp35m-macosx_10_11_x86_64.whl (md5) | Python Wheel | cp35 | 2017-05-11 | 802KB | |
| asyncpg-0.11.0-cp35-cp35m-manylinux1_i686.whl (md5) | Python Wheel | cp35 | 2017-05-11 | 1MB | |
| asyncpg-0.11.0-cp35-cp35m-manylinux1_x86_64.whl (md5) | Python Wheel | cp35 | 2017-05-11 | 1MB | |
| asyncpg-0.11.0-cp35-cp35m-win32.whl (md5) | Python Wheel | cp35 | 2017-05-11 | 660KB | |
| asyncpg-0.11.0-cp35-cp35m-win_amd64.whl (md5) | Python Wheel | cp35 | 2017-05-11 | 700KB | |
| asyncpg-0.11.0-cp36-cp36m-macosx_10_12_x86_64.whl (md5) | Python Wheel | cp36 | 2017-05-11 | 779KB | |
| asyncpg-0.11.0-cp36-cp36m-manylinux1_i686.whl (md5) | Python Wheel | cp36 | 2017-05-11 | 1MB | |
| asyncpg-0.11.0-cp36-cp36m-manylinux1_x86_64.whl (md5) | Python Wheel | cp36 | 2017-05-11 | 1MB | |
| asyncpg-0.11.0-cp36-cp36m-win32.whl (md5) | Python Wheel | cp36 | 2017-05-11 | 666KB | |
| asyncpg-0.11.0-cp36-cp36m-win_amd64.whl (md5) | Python Wheel | cp36 | 2017-05-11 | 708KB | |
| asyncpg-0.11.0.tar.gz (md5) | Source | 2017-05-11 | 474KB | ||
- Author: MagicStack Inc
- Home Page: https://github.com/MagicStack/asyncpg
- License: Apache License, Version 2.0
- Platform: POSIX
- Provides asyncpg
-
Categories
- Development Status :: 5 - Production/Stable
- Intended Audience :: Developers
- License :: OSI Approved :: Apache Software License
- Operating System :: MacOS :: MacOS X
- Operating System :: Microsoft :: Windows
- Operating System :: POSIX
- Programming Language :: Python :: 3.5
- Programming Language :: Python :: 3.6
- Programming Language :: Python :: 3 :: Only
- Package Index Owner: Elvis.Pranskevichus, yselivanov
- Package Index Maintainer: magicstack-ci
- DOAP record: asyncpg-0.11.0.xml
