Pushover.jl Overview
Pushover — Module.A Julia package to send notifications using the Pushover Notification Service as documented here.
Install
Pkg.add("Pushover")or
Pkg.clone("https://github.com/scls19fr/Pushover.jl")Usage
using Pushover
include("config.jl")
client = PushoverClient(CONFIG["USER_KEY"], CONFIG["API_TOKEN"])
message = "My first message"
response = send(client, message, priority=1)
println("response: $response")
See also
- BulkSMS.jl - A Julia package to send SMS (Short Message Service) using BulkSMS API