AlertPushover.jl

Backend for `Alert` to use the pushover notification service
Author haberdashPI
Popularity
7 Stars
Updated Last
1 Year Ago
Started In
August 2020

AlertPushover

Project Status: Active – The project has reached a stable, usable state and is being actively developed.

AlertPushover provides a backend for Alert. It uses the Pushover service to send notifications remotely to the Pushover app. This makes alert useful even when working remotely or via an online IDE.

You will need to sign up for an account (there is a 7-day trial, and there is a one-time $5 charge to keep using it after that). Install Pushover to receive your notifications (e.g. open the webapp, or install the app on your phone). Then create a new app on their website. You will then have a user token for your account, and an API token for the app you created. Then, in your $HOME/.julia/config/startup.jl file add the backend for Pushover as follows.

using AlertPushover
pushover_alert!(token = [API token], user = [user token])

Now, when you call alert, it will use the Pushover service, as follows.

using Alert

for i in 1:10_000
    long_running_function()
end

alert("Your julia script is finished!")

See Alert for more details on its usage.

Used By Packages

No packages found.