psycaio

Asyncio psycopg2 mixin


Keywords
asyncio, postgresql, psycopg2, python
License
MIT
Install
pip install psycaio==0.3

Documentation

psycaio

A Python asyncio wrapper around psycopg2

Example

import asyncio

from psycaio import connect


async def test_conn():
    cn = await connect(dbname='postgres')
    cr = cn.cursor()
    await cr.execute("SELECT 42")
    print(cr.fetchone()[0])
    cr = cn.cursor()
    await cr.execute("SELECT 42")
    print(cr.fetchone()[0])


if __name__ == '__main__':
    loop = asyncio.get_event_loop()
    loop.run_until_complete(test_conn())
    loop.close()

About

This package is meant as a minimal asyncio mixin for psycopg2.