https://github.com/qtoggle/qtoggleserver-pushover
Push notifications for qToggleServer via Pushover
https://github.com/qtoggle/qtoggleserver-pushover
notifications push-notifications pushover qtoggle qtoggleserver
Last synced: 8 months ago
JSON representation
Push notifications for qToggleServer via Pushover
- Host: GitHub
- URL: https://github.com/qtoggle/qtoggleserver-pushover
- Owner: qtoggle
- License: apache-2.0
- Created: 2019-12-25T21:21:40.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2025-06-15T19:26:07.000Z (12 months ago)
- Last Synced: 2025-10-10T22:45:43.673Z (8 months ago)
- Topics: notifications, push-notifications, pushover, qtoggle, qtoggleserver
- Language: Python
- Size: 27.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
## About
This is an addon for [qToggleServer](https://github.com/qtoggle/qtoggleserver).
It provides push notifications for qToggleServer via [Pushover](https://pushover.net/).
## Install
Install using pip:
pip install qtoggleserver-pushover
## Usage
You'll need to register your account on [Pushover](https://pushover.net/), if you haven't done it yet. On their home
page, you'll see your *User Key*; copy it and use it in the configuration below. You can add more than one user key, if
you plan to send notifications to multiple users.
Then, you'll need a registered Pushover application (you can register one [here](https://pushover.net/apps/build)).
Copy the API key and use it in the configuration below:
##### `qtoggleserver.conf:`
``` ini
...
event_handlers = [
...
{
driver = "qtoggleserver.pushover.PushoverEventHandler"
user_keys = ["r7zxs1nj20w86bghyub5div8jyzyiw"]
api_key = "nwn1cmgc9m6sjhrv1o4roebpb31b5i"
sound = "pushover" # optional
...
}
...
]
...
```
For further customization, see
[Template Notifications](https://github.com/qtoggle/qtoggleserver/wiki/Template-Notifications).
For advanced event filtering, see
[Filter Event Handlers](https://github.com/qtoggle/qtoggleserver/wiki/Filter-Event-Handlers).
For available Pushover sounds, see [Pushover Sounds](https://pushover.net/api#sounds).