asyncpg icon indicating copy to clipboard operation
asyncpg copied to clipboard

A fast PostgreSQL Database Client Library for Python/asyncio.

Results 213 asyncpg issues
Sort by recently updated
recently updated
newest added

1. please consider inclusion of cluster connection pool with automatic fail-over, i.e. https://gist.github.com/Andrei-Pozolotin/f5be7dec56840428c6245a1cef4a25eb 2. the basic idea is to run per-cluster-member connection ping tasks in background and select next best...

I'm using asyncpg to connect my database in Heroku postgresql, using python: ``` import asyncpg async def create_db_pool(): bot.pg_con = await asyncpg.create_pool(dsn="postgres://....", host="....amazonaws.com", user="xxx", database="yyy", port="5432", password="12345") ``` it was...

The documentation for [`asyncpg.pool.Pool.set_connect_args`](https://magicstack.github.io/asyncpg/current/api/index.html#asyncpg.pool.Pool.set_connect_args) makes no mention that there are 2 particular kwargs that are _already_ being passed to [`connect`](https://magicstack.github.io/asyncpg/current/api/index.html#asyncpg.connection.connect) by the pool when it creates new connections: https://github.com/MagicStack/asyncpg/blob/92c2d81256a1efd8cab12c0118d74ccd1c18131b/asyncpg/pool.py#L459-L463 Before...