Skip to content

Commit

Permalink
corrige error en la documentación
Browse files Browse the repository at this point in the history
en el proceso de release, se me pasó la documentación de la
versión 0.1.7 por lo que tuve que corregirla....
  • Loading branch information
fixmycode committed Aug 8, 2020
1 parent 0fc93ce commit fb21045
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,12 @@ 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)
payment = client.payments.post('test', 'USD', 100)
print(payment.payment_url)
```

0 comments on commit fb21045

Please sign in to comment.