Python QIWI payments API

cofob 694b4b876d Done ;) 3 years ago
qiwi 694b4b876d Done ;) 3 years ago
.gitignore 694b4b876d Done ;) 3 years ago
LICENSE c150ddd23a Initial commit 3 years ago
MIRRORS 00afe2dffd Create MIRRORS 3 years ago
README.md 694b4b876d Done ;) 3 years ago
requirements.txt 694b4b876d Done ;) 3 years ago

README.md

qiwi-api

Python QIWI payments API

Quick Example

import qiwi


def callback(tx: qiwi.types.Transaction):
    print('New transaction!', tx.account, tx.amount, tx.comment)


qiwi_api = qiwi.Qiwi('a4xxxxxxxxxxxxxxxxxxxxxee', '7xxxxxxxxx3', callback=callback)
qiwi_api.start()