Metadata-Version: 2.4
Name: curpify
Version: 0.1.1
Summary: SDK oficial de CURPify — validación de identidad mexicana (CURP, RFC, IMSS, SEP)
Project-URL: Homepage, https://curpify.mx
Project-URL: Repository, https://github.com/curpify/curpify-python
Project-URL: Bug Tracker, https://github.com/curpify/curpify-python/issues
Author-email: CURPify <support@curpify.mx>
License: MIT
Keywords: curp,identidad,imss,mexico,renapo,rfc,sep
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Requires-Dist: httpx>=0.27.0
Description-Content-Type: text/markdown

# curpify

SDK oficial de CURPify para Python — validación de identidad mexicana (CURP, RFC, IMSS, SEP).

```bash
pip install curpify
```

```python
from curpify import Curpify

client = Curpify(api_key="ck_live_...")

result = client.curp.validate("RAMG820203HDFMRR05")
print(result.data.first_name, result.data.paternal_surname)
```

Documentación completa en [docs.curpify.mx](https://docs.curpify.mx).
