Homelab Notification Method History (opens in new tab)
For the past many years I have used various notification methods in my projects. Prowl Prowl is one that I have been using for the longest time. It has a simple API that can be used easily from curl and other applications. # import requests requests.post( url=" class="p">, data={ "apikey": api_key, "application": "my-application", "event": 'Event Title', "description": 'Event description', "priority": 0, # Optional "url": " class="p">, # Optional } ) While it has generally been very reliable,...
Read the original article