Metadata-Version: 2.4
Name: aurepay
Version: 0.1.2
Summary: SDK oficial da API AurePay para Python (tipado via OpenAPI)
Author: AurePay
License: MIT
Project-URL: Homepage, https://api.aurepay.com.br/docs/sdks
Project-URL: Documentation, https://api.aurepay.com.br/docs
Project-URL: Repository, https://github.com/grupojrx/aurepay-python
Keywords: aurepay,pix,payments,brazil,sdk,openapi
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: urllib3>=2.0.0
Requires-Dist: python-dateutil>=2.8.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: typing-extensions>=4.0.0
Dynamic: license-file

# aurepay

SDK oficial da API AurePay para Python.

## Instalação

```bash
pip install aurepay
```

## Uso

```python
from aurepay import AurePay

aure = AurePay(
    api_key="...",
    api_secret="...",
)

aure.deposits.create({"amount": 10000, "method": "pix"})
aure.webhooks.list()
aure.company.balance()
```

Docs: https://api.aurepay.com.br/docs/sdks  
OpenAPI: https://api.aurepay.com.br/openapi.yaml
