Asynchronous logging library for Python and asyncio. Version 0.7.0. Supports Python >=3.7. Provides an async-compatible logger that integrates with the standard logging module. Release cadence is low; last release was in 2021.
pip install aiologgerVerified import paths — ran on the pinned version, not inferred.
Basic async logging with default handlers. Always call shutdown to flush and close handlers.
Always use `await` when calling logger methods, or use `await logger.info(...)`.
Always call `await logger.shutdown()` at the end of your async block.
Use `from aiologger import Logger` instead.
Ensure all aiologger calls happen within the same event loop, typically the main thread's loop. Create the logger inside async context.
Add `await`: `await logger.info(...)`
No dependency data recorded yet.