pykhipu icon indicating copy to clipboard operation
pykhipu copied to clipboard

Wrapper for the Khipu payment service API v2.0

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

Sobre Khipu

Khipu 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

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.

from pykhipu.client import Client

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