Python QIWI payments API

cofob 694b4b876d Done ;) hace 3 años
qiwi 694b4b876d Done ;) hace 3 años
.gitignore 694b4b876d Done ;) hace 3 años
LICENSE c150ddd23a Initial commit hace 3 años
MIRRORS 00afe2dffd Create MIRRORS hace 3 años
README.md 694b4b876d Done ;) hace 3 años
requirements.txt 694b4b876d Done ;) hace 3 años

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()