Pushover.jl Overview

Pushover.jl Overview

PushoverModule.

A Julia package to send notifications using the Pushover Notification Service as documented here.

source

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 examples

See also