psycaio 0.3

Creator: railscoder56

Last updated:

Add to Cart

Description:

psycaio 0.3

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.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.