Metadata-Version: 2.4
Name: xrequest
Version: 0.0.1
Summary: Simple httpx for lazy people
Author: Reollinos
License: MIT
Project-URL: Homepage, https://github.com/Reollinos/xrequest
Project-URL: Repository, https://github.com/Reollinos/xrequest
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# xrequest

Biblioteca simples para requisições HTTP assíncronas.

## Instalação

```bash
pip install xrequest
```

## Uso

### Sem Session
```python
import xrequest

response = await xrequest.get("https://api.example.com")
```

### Com Session (reutilizar conexão)
```python
import xrequest

session = xrequest.Session()
try:
    response = await session.get("https://api.example.com")
finally:
    await session.close()
```

## Licença

MIT
