A lightweight Python library for retrying async functions with configurable backoff, jitter, and retry conditions. Supports both asyncio and trio. Current version: 0.1.4. Release cadence: intermittent.
pip install retry-asyncVerified import paths — ran on the pinned version, not inferred.
Decorator-based retry for async functions with exponential backoff.
Ensure the decorated function is async def.
Set max_tries to the total number of attempts (initial + retries).
If you relied on linear backoff, set backoff=1.0 explicitly.