A utility for sending push notifications
Project description
ntfy is a command line utility (and to a degree, python library) for sending push notifications. It also can send a notification when a program finishes.
Unlike many existing utilities for Pushover or Pushbullet, it supports multiple backends.
Demo
Install
sudo pip install ntfy
Note: It is suggested to globally (as indicated above, without a virtualenv) install ntfy. It can be installed in a virtualenv, with caveats. Linux notifications requires --system-site-packages to be used and OS X notifications don’t work at all.
Emoji Support :tada:
ntfy features emoji support, it is installable as an extra, just install like this:
sudo pip install ntfy[emoji]
XMPP Support
The xmpp module requires sleekxmpp. To install this extra install ntfy like this:
sudo pip install ntfy[xmpp]
Usage
# send a notification ntfy send "Here's a notification!" # send a notification with custom title (default is $USER@$HOST) ntfy -t 'ntfy' send "Here's a notification with a custom title!" # send a notification when the command `sleep 10` finishes # this send the message '"sleep 10" succeeded in 0:10 minutes' ntfy done sleep 10
Backends
Supported
XMPP
Linux Desktop Notifications
Windows Desktop Notifications
Mac OS X Notification Center
ToDo
Configuring ntfy
ntfy is configured with a YAML file stored at ~/.ntfy.yml
Backends
The backends key specifies what backends to use by default. Each backend has it’s own configuration, stored in a key of it’s own name. For example:
---
backends:
- pushover
- linux
pushover:
user_key: hunter2
pushbullet:
access_token: hunter2
Note: versions prior to v1.0.0 used JSON instead of YAML.
The available backends are in ntfy.backends, include only the module name in your config (eg: pushbullet not ntfy.backends.pushbullet).
Testing
python setup.py test
Contributors
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ntfy-1.1.0.tar.gz.
File metadata
- Download URL: ntfy-1.1.0.tar.gz
- Upload date:
- Size: 36.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c99efb8be83337e510a1626fc1e8e1c1c1437bfb5b6aabd8896d49d7e37d002d
|
|
| MD5 |
c874300cd3410ea82f0a782e3265badf
|
|
| BLAKE2b-256 |
5819bafeb70677703fb1fd8a6cd0e4148299c4bee1d511e7dc532f3311fb54e2
|
File details
Details for the file ntfy-1.1.0-py2.py3-none-any.whl.
File metadata
- Download URL: ntfy-1.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 25.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6730a8292d054751cf13ba51171ffe9749d499fa0464ab5193ac86922e97ab31
|
|
| MD5 |
aaaaa2549cdc90eb027b442cf48107f3
|
|
| BLAKE2b-256 |
ad1ff2ad408490b340928e17f7f9463e5f7eb358e617455a5bd4df21a633a3ed
|