Skip to content

Commit 222434e

Browse files
committed
Update README.md
1 parent 4d7bb2d commit 222434e

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,22 @@
11
# cryptopay
22
Api wrapper for crypto.com pay
3+
4+
Python API wrapper for [Crypto.com Pay](https://pay-docs.crypto.com)
5+
6+
![Travis (.com)](https://img.shields.io/travis/com/pipoline/cryptopay) ![Codecov](https://img.shields.io/codecov/c/github/pipoline/cryptopay) ![PyPI - Downloads](https://img.shields.io/pypi/dm/cryptopay) ![PyPI](https://img.shields.io/pypi/v/cryptopay)
7+
### Installation
8+
- From pypi:
9+
`pip3 install cryptopay`
10+
- From GitHub:
11+
Clone our repository and `python3 setup.py install`
12+
13+
### Usage
14+
```python
15+
from pprint import pprint
16+
from cryptopay import Client
17+
18+
client = Client()
19+
response = client.get_payments()
20+
payments = response.json()
21+
pprint(payments)
22+
```

0 commit comments

Comments
 (0)