We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d7bb2d commit 222434eCopy full SHA for 222434e
1 file changed
README.md
@@ -1,2 +1,22 @@
1
# cryptopay
2
Api wrapper for crypto.com pay
3
+
4
+Python API wrapper for [Crypto.com Pay](https://pay-docs.crypto.com)
5
6
+   
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