psqlpy is an async PostgreSQL driver for Python written in Rust, offering high performance and full async/await support. Current version is 0.11.12, with active development and regular releases.
pip install psqlpyNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic async query using connection pool.
Use from psqlpy import AsyncPool instead.
Use 'async with pool' or ensure pool.close() is called after use.
Always 'await pool.execute(...)' or 'await conn.fetch(...)'.