Answer the question
In order to leave comments, you need to log in
Is it possible to send a notification to the PC with an incoming QIWI transfer?
Actually, you need to send a notification to the PC
import plyer
plyer.notification.notify(
message = f'В размере {summ}',
title = 'Поступили средства!',
)
Answer the question
In order to leave comments, you need to log in
You can
https://developer.qiwi.com/ru/qiwi-wallet-personal... Read
the instructions on the link, issue an api key, create some kind of request handler, as in the example below, register the webhook in Qiwi and use it.
from flask import Flask, request, Response
app = Flask(__name__)
@app.route('/qiwi', methods=['POST'])
def qiwi():
print(request.data)
return Response(status=200)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question