Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adilkhash/qiwi
Python QIWI API Client
https://github.com/adilkhash/qiwi
payments-api qiwi qiwi-api
Last synced: 4 days ago
JSON representation
Python QIWI API Client
- Host: GitHub
- URL: https://github.com/adilkhash/qiwi
- Owner: adilkhash
- License: mit
- Created: 2019-06-01T05:02:33.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-22T22:27:54.000Z (over 1 year ago)
- Last Synced: 2024-10-14T13:18:27.949Z (about 1 month ago)
- Topics: payments-api, qiwi, qiwi-api
- Language: Python
- Size: 8.79 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Python Qiwi API client
## Description
Python client for Qiwi Payments API (Qiwi Kassa, Qiwi Wallet)## Install
```bash
pip install qiwi-payments
```## Usage
```python
from decimal import Decimalfrom qiwi_payments.kassa import QiwiKassa
kassa = QiwiKassa('MY_SECRET_QIWI_KEY')
invoice = kassa.create_bill(
amount=Decimal('10.00'),
currency='RUB',
comment='Pay me ASAP'
)print(invoice.pay_url)
```