Metadata-Version: 2.4
Name: kobra-partner
Version: 0.1.2
Summary: Cliente Python de la API Partner de Kobra.
Author: Kobra
License-Expression: MIT
Project-URL: Homepage, https://github.com/pyme0/kobra-partner
Project-URL: Repository, https://github.com/pyme0/kobra-partner
Project-URL: Documentation, https://control-center-production-03de.up.railway.app/partner/docs
Project-URL: PyPI, https://pypi.org/project/kobra-partner/
Project-URL: Issues, https://github.com/pyme0/kobra-partner/issues
Keywords: kobra,cobranza,partner,api,sdk
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Typing :: Typed
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx>=0.27
Provides-Extra: dev
Requires-Dist: pytest>=8; extra == "dev"
Dynamic: license-file

# kobra-partner

Cliente Python de la API Partner de Kobra.

## Instalar

```bash
pip install kobra-partner
pip install -U kobra-partner
```

## Uso

```python
from kobra_partner import Client

client = Client(
    api_key="pk_…",
    base_url="https://control-center-production-03de.up.railway.app",
)
client.me()
```

`base_url` es el host del control-center (sin path). La clave se envía como `X-Kobra-Partner-Key`.

## Documentación de la API

Referencia y playground (oficial en staging):

https://control-center-production-03de.up.railway.app/partner/docs

En cualquier entorno: `{base_url}/partner/docs`.

## Paquete

- PyPI: https://pypi.org/project/kobra-partner/
- Código: https://github.com/pyme0/kobra-partner

MIT
