6 hours ago · Tech · 0 comments

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. # https://www.prowlapp.com/api.php#add import requests requests.post( url="https://api.prowlapp.com/publicapi/add", data={ "apikey": api_key, "application": "my-application", "event": 'Event Title', "description": 'Event description', "priority": 0, # Optional "url": "http://example.com", # Optional } ) While it has generally been very reliable, UI is very simple, and doesn’t allow a lot of options. Over time, I have often wanted to have something a bit more robust. Line Living in Japan, most people use LINE and for a while I used LINE Notify as another notification method. LINE retired their notification service last year, so it is no longer available. While it generally worked ok, notification content was even simpler than prowl, and all messages went into a…

No comments yet. Log in to reply on the Fediverse. Comments will appear here.