Skip to content

Backend for `Alert` to use the pushover notification service

License

Notifications You must be signed in to change notification settings

haberdashPI/AlertPushover.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Backend for `Alert` to use the pushover notification service

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages