Metadata-Version: 2.1
Name: pykhipu
Version: 0.1.8
Summary: Wrapper for the Khipu payment service API v2.0
Home-page: http://github.com/fixmycode/pykhipu
License: MIT
Author: Pablo Albornoz
Author-email: pablo.albornoz.n@gmail.com
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: importlib_metadata (>=1.7.0,<2.0.0); python_version < "3.9"
Requires-Dist: mock (==3.0.5); python_version >= "2.7" and python_version < "2.8"
Requires-Dist: python-dateutil (>=2.8.1,<3.0.0)
Requires-Dist: requests (>=2.24.0,<3.0.0)
Requires-Dist: six (>=1.15.0,<2.0.0)
Project-URL: Repository, http://github.com/fixmycode/pykhipu
Description-Content-Type: text/markdown

# PyKhipu

Paquete de Python para el API 2.0 del servicio de pagos Khipu

🇬🇧 Python wrapper for the Khipu payment service API v2.0

![PyPI](https://img.shields.io/pypi/v/pykhipu)

## Sobre Khipu

> [Khipu](https://cl.khipu.com/page/introduccion) permite a las personas y empresas, pagar y cobrar electrónicamente usando sus propias cuentas corrientes o cuentas vista del banco, de manera fácil, rápida y segura. 

## Instalación

```bash
pip install pykhipu
```

## Uso

Iguala al API de Khipu en llamadas, ideal para portar código o en casos en que se busque más control sobre los resultados.

```python
from pykhipu.client import Client

client = Client(receiver_id='1234', secret='abcd')
payment = client.payments.post('test', 'USD', 100)
print(payment.payment_url)
```

