Skip to content

Commit

Permalink
Nuevo README
Browse files Browse the repository at this point in the history
  • Loading branch information
fixmycode committed Aug 8, 2020
1 parent bb7deb9 commit d2e8236
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 23 deletions.
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# 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

### Interfaz de bajo nivel

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
from pykhipu import currency

client = Client(receiver_id='1234', secret='abcd')
payment = client.payments.post('test', currency.USD, 100)
print(payment.payment_url)
```
23 changes: 0 additions & 23 deletions README.rst

This file was deleted.

0 comments on commit d2e8236

Please sign in to comment.