Metadata-Version: 2.4
Name: pyretryx
Version: 0.1.0
Summary: Simple and powerful retry decorator for Python
Author: Amir
License: MIT
Keywords: retry,backoff,async,python
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# pyretryx

Simple retry decorator for Python.

## Installation

```bash
pip install pyretryx
```

## Usage

```python
from pyretryx import retry

@retry(attempts=3)
def fetch():
    ...
```

## Async Usage

```python
from pyretryx import async_retry

@async_retry(attempts=5)
async def fetch():
    ...
```
