Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
I didn’t quite understand the question, but you can send yourself notifications from the Python code with API requests.
You install the Pushbullet application and send requests like:
url = 'https://api.pushbullet.com/v2/pushes'
data = {
"body": "text",
"title": "subject",
"type": "note",
"device_iden": "12345"
}
headers = {
"Access-Token": "token",
"Content-Type": "application/json"
}
response = requests.post(url, data=json.dumps(data), headers=headers)
print(response.text)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question