Overview of peewee-async
masterpeewee-async is an asynchronous interface for the peewee ORM, powered by asyncio. It provides asynchronous analogues for Peewee's synchronous methods, using the aio_ prefix. It is designed as a drop-in replacement for sync code while allowing synchronous operations to remain synchronous.
Key Features:
- Python Support: Works on Python 3.10+.
- Database Support:
- PostgreSQL: via
aiopgorpsycopg3. - MySQL: via
aiomysql. - Sqlite: via
aiosqlite.
- PostgreSQL: via
- Functionality: Supports basic operations and transactions.