Prowl Rust API
A library with some structure around the Prowl API. This is an alternative to things like PushBullet or PushOver, using a one time fee instead of subscription based model. Additional nicities are being able to set notification priorities and a generous default of 1,000 API calls per hour with the option to allow-list for more.
Example
After getting your Prowl API Key from https://www.prowlapp.com/. You can start sending notifications to devices you are logged into,
From examples/add.rs:
let ice_cube_reciepe = "".to_owned
+ "Empty the ice cubes that are left in the trays (if there are any left) into the bin."
+ "Take the trays over to the sink and fill them with cold water. (Hot water will freeze faster and more clear)."
+ "Place the water filled ice trays back in the freezer."
+ "Replace the ice bin if you had to remove it."
+ "Shut the door to the freezer."
+ "Be sure to leave for around 4-6 hours at least to make sure it is frozen."
+ "If you want to experiment, you can freeze things like fruit infused waters or juices."
+ "\n\n"
+ "from https://www.food.com/recipe/ice-cubes-420398";
let notification_description = format!;
let notification = new
.expect;
notification
.add
.await
.expect;