Stable release 0.2.16
☑️ Added webhooks
and handlers
. More docs: here.
from glQiwiApi import QiwiWrapper, types
wallet = QiwiWrapper(
api_access_token='TOKEN',
secret_p2p='SECRET_P2P'
)
@wallet.bill_handler()
async def handle_event(event: types.Notification):
print(event)
wallet.start_webhook(port=80)