Ntfy - 🖥️📱🔔 A utility for sending notifications, on demand and when commands finish.

Overview

About ntfy

Version Docs Build WinBuild Coverage SayThanks

ntfy brings notification to your shell. It can automatically provide desktop notifications when long running commands finish or it can send push notifications to your phone when a specific command finishes. Confused? This video demonstrates some of this functionality:

https://raw.githubusercontent.com/dschep/ntfy/master/docs/demo.gif

Quickstart

~/.ntfy.yml $ ntfy send "Pushover via config file!" $ ntfy done --pid 6379 # pid extra $ ntfy send ":tada: ntfy supports emoji! :100:" # emoji extra # Enable shell integration $ echo 'eval "$(ntfy shell-integration)"' >> ~/.bashrc">
$ sudo pip install ntfy
$ ntfy send test
# send a notification when the command `sleep 10` finishes
# this sends the message '"sleep 10" succeeded in 0:10 minutes'
$ ntfy done sleep 10
$ ntfy -b pushover -o user_key t0k3n send 'Pushover test!'
$ ntfy -t 'ntfy' send "Here's a custom notification title!"
$ echo -e 'backends: ["pushover"]\npushover: {"user_key": "t0k3n"}' > ~/.ntfy.yml
$ ntfy send "Pushover via config file!"
$ ntfy done --pid 6379  # pid extra
$ ntfy send ":tada: ntfy supports emoji! :100:"  # emoji extra
# Enable shell integration
$ echo 'eval "$(ntfy shell-integration)"' >> ~/.bashrc

Install

The install technique in the quickstart is the suggested method of installation. It can be installed in a virtualenv, but with some caveats: Linux notifications require --system-site-packages for the virtualenv and OS X notifications don't work at all.

🐧 NOTE: Linux Desktop Notifications require Python DBUS bindings. See here for more info.

Shell integration

ntfy has support for automatically sending notifications when long running commands finish in bash and zsh. In bash it emulates zsh's preexec and precmd functionality with rcaloras/bash-preexec. To enable it add the following to your .bashrc or .zshrc:

eval "$(ntfy shell-integration)"

By default it will only send notifications for commands lasting longer than 10 seconds and if the terminal is focused. Terminal focus works on X11(Linux) and with Terminal.app and iTerm2 on MacOS. Both options can be configured via the --longer-than and --foreground-too options.

To avoid unnecessary notifications when running interactive programs, programs listed in AUTO_NTFY_DONE_IGNORE don't generate notifications. For example:

export AUTO_NTFY_DONE_IGNORE="vim screen meld"

Extras

ntfy has a few features that require extra dependencies.
  • ntfy done -p $PID requires installing as pip install ntfy[pid]
  • emoji support requires installing as pip install ntfy[emoji]
  • XMPP support requires installing as pip install ntfy[xmpp]
  • Telegram support requires installing as pip install ntfy[telegram]
  • Instapush support requires installing as pip install ntfy[instapush]
  • Slack support requires installing as pip install ntfy[slack]
  • Slack Incoming webhook - simpler slack implementation that doesn't have additional dependencies
  • Rocket.Chat support requires installing as pip install ntfy[rocketchat]

To install multiple extras, separate with commas: e.g., pip install ntfy[pid,emoji].

Configuring ntfy

ntfy is configured with a YAML file stored at ~/.ntfy.yml or in standard platform specific locations:

  • Linux - ~/.config/ntfy/ntfy.yml
  • macOS - ~/Library/Application Support/ntfy/ntfy.yml
  • Windows - C:\Users\ \AppData\Local\dschep\ntfy.yml

Backends

The backends key specifies what backends to use by default. Each backend has its own configuration, stored in a key of its own name. For example:

---
backends:
    - pushover
pushover:
    user_key: hunter2
pushbullet:
    access_token: hunter2
simplepush:
    key: hunter2
slack:
    token: slacktoken
    recipient: "#slackchannel"
xmpp:
     jid: "[email protected]"
     password: "xxxx"
     mtype: "chat"
     recipient: "[email protected]"

If you want mulitple configs for the same backend type, you can specify any name and then specify the backend with a backend key. For example:

---
pushover:
    user_key: hunter2
cellphone:
    backend: pushover
    user_key: hunter2

See the backends below for available backends and options. As of v2.6.0 ntfy also supports 3rd party backends

Pushover - pushover

Required parameters:
  • user_key
Optional parameters:
  • sound
  • priority
  • expire
  • retry
  • callback
  • api_token - use your own application token
  • device - target a device, if omitted, notification is sent to all devices
  • url
  • url_title
  • html

Pushbullet - pushbullet

Required parameter:
Optional parameters:
  • device_iden - a device identifier, if omited, notification is sent to all devices
  • email - send notification to pushbullet user with the specified email or send an email if they aren't a pushullet user

Simplepush - simplepush

Required parameter:
  • key - Your Simplepush key, created by installing the Android App (no registration required) at https://simplepush.io
Optional parameters:
  • event - sets ringtone and vibration pattern for incoming notifications (can be defined in the simplepush app)

XMPP - xmpp

Requires parameters:
  • jid
  • password
  • recipient
Optional parameters
  • hostname (if not from jid)
  • port
  • path_to_certs
  • mtype

Requires extras, install like this: pip install ntfy[xmpp].

To verify the SSL certificates offered by a server: path_to_certs = "path/to/ca/cert"

Without dnspython library installed, you will need to specify the server hostname if it doesn't match the jid.

Specify port if other than 5222. NOTE: Ignored without specified hostname

NOTE: Google Hangouts doesn't support XMPP since 2017

Telegram - telegram

Requires extras, install like this: pip install ntfy[telegram].

Requires ntfy to be installed as ntfy[telegram]. This backend is configured the first time you will try to use it: ntfy -b telegram send "Telegram configured for ntfy".

Pushjet - pushjet

Required parameter:
Optional parameters:
  • endpoint - custom Pushjet API endpoint
    (defaults to https://api.pushjet.io)
  • level - The importance level from 1(low) to 5(high)
  • link

Notifico - notifico

Required parameter:
  • webhook - The webhook link, created at https://n.tkte.ch/
    (choose Plain Text service when creating the webhook)

Slack - slack

Requires extras, install like this: pip install ntfy[slack].

Required parameter:
  • token - The Slack service secret token, either a legacy user token created at https://api.slack.com/custom-integrations/legacy-tokens or a token obtained by creating an app at https://api.slack.com/apps?new_app=1 with chat:write:bot scope and linking it to a workspace.
  • recipient - The Slack channel or user to send notifications to. If you use the # symbol the message is send to a Slack channel and if you use the @ symbol the message is send to a Slack user.

Slack Incoming Webhook - slack_webhook

Required parameter:
  • url - the URL of the incoming webhook
  • user - The Slack channel or user to send notifications to

Instapush - insta

Requires extras, install like this pip install ntfy[instapush].

Instapush does not support notification title. It sends template-driven notifications, so you have to setup you events on the dashboard first. The backend is called insta due to homonymy with the instapush python wrapper

Required parameters:
  • appid - The application id
  • secret - The application secret
  • event_name - The instapush event to be used
  • trackers - The array of trakers to use

Note on trackers: Trackers are placeholders for events (a sort of notification template). If you defined more than one tracker in your event you'll have to provide more messages. At the moment, the only way to do so is to separate each message with a colon (:) character. You can also escape the separator character: Example:

ntfy -b insta send "message1:message2"
ntfy -b insta send "message1:message2\:with\:colons"

Prowl - prowl

Optional parameters:
  • api_key
  • provider_key
  • priority
  • url

Linux Desktop Notifications - linux

Works via dbus, works with most DEs like Gnome, KDE, XFCE and with libnotify.

The following dependecies should be installed.

$ sudo apt install python-dbus # on ubuntu/debian

You will need to install some font that supports emojis (in Debian fonts-symbola or Gentoo media-fonts/symbola).

Optional parameters:
  • icon - Specifies path to the notification icon, empty string for no icon.
  • urgency - Specifies the urgency level (low, normal, critical).
  • transient - Skip the history (exp: the Gnome message tray) (true, false).
  • soundfile - Specifies the notification sound file (e.g. /usr/share/sounds/notif.wav).
  • timeout - Specifies notification expiration time level (-1 - system default, 0 - never expire).

Windows Desktop Notifications - win32

Uses pywin32.

Mac OS X Notification Center - darwin

Requires ntfy to be installed globally (not in a virtualenv).

System log - systemlog

Uses the syslog core Python module, which is not available on Windows platforms.

Optional parameters:
  • prio - Syslog priority level. Default is ALERT. Possible values are:

    • EMERG
    • ALERT
    • CRIT
    • ERR
    • WARNING
    • NOTICE
    • INFO
    • DEBUG
  • facility - Syslog facility. Default is LOCAL5. Possible values are:

    • KERN
    • USER
    • MAIL
    • DAEMON
    • AUTH
    • LPR
    • NEWS
    • UUCP
    • CRON
    • SYSLOG
    • LOCAL0
    • LOCAL1
    • LOCAL2
    • LOCAL3
    • LOCAL4
    • LOCAL5
    • LOCAL6
    • LOCAL7
  • fmt - Format of the message to be sent to the system logger. The title and the message are specified using the following placeholders:

    • {title}
    • {message}

    Default is [{title}] {message}.

Termux:API - termux

Requires the app to be install from the Play store and the CLI utility be installed with apt install termux-api.

Pushalot - pushalot

Required parameter:
Optional parameters:
  • source - source of the notification
  • ttl - message expire time in minutes (time to live)
  • url - URL to include in the notifications
  • url_title - visible URL title (ignored if no url specified)
  • image - URL of image included in the notifications
  • important - mark notifications as important
  • silent - mark notifications as silent

Rocket.Chat - rocketchat

Requires extras, install like this: pip install ntfy[rocketchat].

Required parameters:
  • url - URL of your Rocket.Chat instance
  • username - login username
  • password - login password
  • room - room/channel name to post in

Matrix.org - matrix

Requires extras, install like this: pip install ntfy[matrix].

Required parameters:
  • url - URL of your homeserver instance
  • roomId - room to post in
  • userId - login userid
  • password - login password
  • token - access token

You must either specify token, or userId and password.

Webpush - ntfy_webpush

Webpush support is provded by an external ntfy module, install like this: pip install ntfy ntfy-webpush.

Required parameters:
  • subscription_info - A PushSubscription Object
  • private_key - the path to private key file or anything else that works with pywebpush.

For more info, see ntfy-webpush <https://github.com/dschep/ntfy-webpush>`_

3rd party backends

To use or implement your own backends, specify the full path of the module as your backend. The module needs to contain a module with a function called notify with the following signature:

def notify(title, message, **kwargs):
    """
    kwargs contains retcode if using ntfy done or ntfy shell-integration
    and all options in your backend's section of the config
    """
    pass

Other options

Title is configurable with the title key in the config. Example:

---
title: Customized Title

Backends ToDo

Testing

python setup.py test

Contributors

Comments
  • xmpp config?

    xmpp config?

    Hello,

    I've instaledl 'ntfy[xmpp]' but I don't know what the yml file needs to look like and how I connect it to a xmpp server. Do you have any documentation that can be shared so I can set it up?

    Thanks, sean

    opened by jungle-boogie 19
  • ntfy done: error: argument --formatter: expected 3 arguments

    ntfy done: error: argument --formatter: expected 3 arguments

    % ls -l
    ...
    ntfy done: error: argument --formatter: expected 3 arguments
    

    This is with the single binary and with zsh AUTO_NTFY_DONE setup. Will I need to continue to use pip for auto shell integration?

    bug 
    opened by jungle-boogie 12
  • QTKit error on installing on macOS 10.12.1

    QTKit error on installing on macOS 10.12.1

    Apparently QTKit has been removed in 10.12.1 and installation is producing an error:

        overriding build_packages to copy PyObjCTest
        creating build
        creating build/lib.macosx-10.11-x86_64-3.5
        creating build/lib.macosx-10.11-x86_64-3.5/QTKit
        copying Lib/QTKit/__init__.py -> build/lib.macosx-10.11-x86_64-3.5/QTKit
        copying Lib/QTKit/_metadata.py -> build/lib.macosx-10.11-x86_64-3.5/QTKit
        creating build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/__init__.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_qtcaptureconnection.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_QTCaptureDecompressedVideoOutput.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_qtcapturedevice.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_QTCaptureFileOutput.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_QTCaptureSession.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_QTCaptureVideoPreviewOutput.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_QTCaptureView.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_QTCompressionOptions.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_qtdatareference.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_qterror.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_qtexportoptions.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_qtexportsession.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_qtformatdescription.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_qtkitdefines.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_qtmedia.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_qtmetadataitem.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_qtmovie.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_qtmoviemodernizer.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_QTMovieView.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_qtsamplebuffer.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_qttime.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_qttimerange.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_qttrack.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        copying PyObjCTest/test_qtutilities.py -> build/lib.macosx-10.11-x86_64-3.5/PyObjCTest
        running build_ext
        building 'QTKit._QTKit' extension
        creating build/temp.macosx-10.11-x86_64-3.5/Modules
        clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Ibuild/temp.macosx-10.11-x86_64-3.5/pyobjc-include -I/usr/local/include -I/usr/local/opt/openssl/include -I/usr/local/opt/sqlite/include -I/usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/include/python3.5m -c Modules/_QTKit.m -o build/temp.macosx-10.11-x86_64-3.5/Modules/_QTKit.o -DPyObjC_BUILD_RELEASE=1012 -Wno-deprecated-declarations
        Modules/_QTKit.m:6:9: fatal error: 'QTKit/QTKit.h' file not found
        #import <QTKit/QTKit.h>
                ^
        1 error generated.
        error: command 'clang' failed with exit status 1```
    
    opened by nuin 8
  • WIP of #125: screen locking detection

    WIP of #125: screen locking detection

    separate backends implemented via a 'multi' meta-backend. Uses config like this:

    backends: [multi]
    multi:
        locked:
            pushover:
                user_key: user-api-key
        unfocused:
            default: {}
        focused: {}
    
    

    This config would cause no notifications if the shell is focused, desktop notifications when unfocused, and pushover notifications when the screen is locked. Freaking magic. :tada:

    Currently supports linux :penguin: with xscreensaver, lightlocker(detection seems iffy), and Gnome.

    There's also a --locked-only cli option.

    Todo:

    • [ ] macOS :apple: support
    • [ ] Windows :flags: support
    • [ ] a better solution than the multi module
    • [ ] documentation
    opened by dschep 7
  • Fix integration tests

    Fix integration tests

    • Always check return value of ntfy_main (no longer using exceptions)
    • Do not use a dict as the default of args.option

    The latter accidentally shared state across tests, breaking all integration tests. However, this was hidden because exceptions are now caught and integration tests were not checking return values.

    opened by sambrightman 7
  • WARNING: Failed to send notification using linux

    WARNING: Failed to send notification using linux

    After installing the dependencies, I tried ntfy.

    [email protected]:~# ntfy -b linux -v send 'test'
    WARNING: Failed to send notification using linux
    [email protected]:~# ntfy send test
    WARNING: Failed to send notification using linux
    [email protected]:~# ntfy done sleep 2
    WARNING: Failed to send notification using linux
    

    Without any other exceptions showing, I can not find out the root cause.

    question 
    opened by dixudx 7
  • Fix #77 - Stop throwing exceptions if $WINDOWID has not been set.

    Fix #77 - Stop throwing exceptions if $WINDOWID has not been set.

    Traceback (most recent call last):                                                                                                                                                                                 
      File "/usr/bin/ntfy", line 11, in <module>
        load_entry_point('ntfy==2.4.1', 'console_scripts', 'ntfy')()
      File "/usr/lib/python3.6/site-packages/ntfy/cli.py", line 341, in main
        message, retcode = args.func(args)
      File "/usr/lib/python3.6/site-packages/ntfy/cli.py", line 64, in run_cmd
        if args.unfocused_only and is_focused():
      File "/usr/lib/python3.6/site-packages/ntfy/terminal.py", line 61, in is_focused
        return linux_window_is_focused()
      File "/usr/lib/python3.6/site-packages/ntfy/terminal.py", line 15, in linux_window_is_focused
        return int(environ['WINDOWID']) == window_id
      File "/usr/lib/python3.6/os.py", line 669, in __getitem__
        raise KeyError(key) from None
    KeyError: 'WINDOWID'
    

    The KeyError comes from the usage of environ["WINDOWID"]. What should be used instead is the get method, e.g. environ.get("WINDOWID") which return None if the key is missing. Of course None is also a non-valid argument for int() but I think that defaulting to 0 is reasonable.

    opened by pmav99 6
  • Arch Linux: No such file or directory xprop

    Arch Linux: No such file or directory xprop

    In Arch after installing via pip and adding the eval to my zshrc I would get this:

    Traceback (most recent call last):
      File "/usr/bin/ntfy", line 11, in <module>
        sys.exit(main())
      File "/usr/lib/python3.5/site-packages/ntfy/cli.py", line 341, in main
        message, retcode = args.func(args)
      File "/usr/lib/python3.5/site-packages/ntfy/cli.py", line 64, in run_cmd
        if args.unfocused_only and is_focused():
      File "/usr/lib/python3.5/site-packages/ntfy/terminal.py", line 61, in is_focused
        return linux_window_is_focused()
      File "/usr/lib/python3.5/site-packages/ntfy/terminal.py", line 14, in linux_window_is_focused
        '_NET_ACTIVE_WINDOW']).split()[1], 16)
      File "/usr/lib/python3.5/subprocess.py", line 626, in check_output
        **kwargs).stdout
      File "/usr/lib/python3.5/subprocess.py", line 693, in run
        with Popen(*popenargs, **kwargs) as process:
      File "/usr/lib/python3.5/subprocess.py", line 947, in __init__
        restore_signals, start_new_session)
      File "/usr/lib/python3.5/subprocess.py", line 1551, in _execute_child
        raise child_exception_type(errno_num, err_msg)
    FileNotFoundError: [Errno 2] No such file or directory: 'xprop'
    

    After installing the Arch package xorg-xprop it works.

    bug 
    opened by austinbutler 6
  • ERROR: Invalid backend xmpp

    ERROR: Invalid backend xmpp

    $  sudo -H pip install ntfy[XMPP]
    Requirement already satisfied (use --upgrade to upgrade): ntfy[XMPP] in /usr/local/lib/python2.7/dist-packages
      ntfy 2.2.0 does not provide the extra 'XMPP'
    Requirement already satisfied (use --upgrade to upgrade): requests in /usr/lib/python2.7/dist-packages (from ntfy[XMPP])
    Requirement already satisfied (use --upgrade to upgrade): ruamel.yaml in /usr/local/lib/python2.7/dist-packages (from ntfy[XMPP])
    Requirement already satisfied (use --upgrade to upgrade): appdirs in /usr/local/lib/python2.7/dist-packages (from ntfy[XMPP])
    Requirement already satisfied (use --upgrade to upgrade): ruamel.ordereddict in /usr/local/lib/python2.7/dist-packages (from ruamel.yaml->ntfy[XMPP])
    Requirement already satisfied (use --upgrade to upgrade): typing in /usr/local/lib/python2.7/dist-packages (from ruamel.yaml->ntfy[XMPP])
    
    $ ntfy -v -b xmpp send 'XMPP test!'
    ERROR: Invalid backend xmpp
    
    $ cat  ~/.config/ntfy/ntfy.yml
    
    
    ---
    backends:
            - xmpp
    xmpp:
            jid: "[email protected]"
            password: "XXXXXXX"
            hostname: "domain.tld"
            port: "62285"
            mtype: "chat"
            recipient: "[email protected]"
    

    @danryder Am I missing something?

    question 
    opened by tristan-k 6
  • Using ntfy background shell?

    Using ntfy background shell?

    I want to use ntfy to notify me from my headless serve (ubuntu 14). A script starts at inserting a disc in the drive SUBSYSTEM=="block", KERNEL=="sr0", ACTION=="change", RUN+="/usr/local/bin/add-disc.sh" In add-disc.sh i do some differnet things (in the backgrond -> headless) and want be notified via ntfy. All commandos in add-disc.sh works - not nfty. Is there a parameter to let nfty work in background?

    opened by grkngls 6
  • XDG base dirs?

    XDG base dirs?

    Should I use XDG Base dirs for the config? EG: ~/.config/ntfy/ntfy.yml instead of ~/.ntfy.yml. Use ~/Library/Appplication Support/ntfy/ntfy.yml on Mac? Windows???

    ref: http://stackoverflow.com/questions/3373948/equivalents-of-xdg-config-home-and-xdg-data-home-on-mac-os-x

    opened by dschep 6
  • feature: support customizing icons depending on the result code

    feature: support customizing icons depending on the result code

    hello,

    I love the tool so versatile and useful

    i think this could be a great idea to support customizing the icon based on the result code

    exemple: "✅ sleep 30 succeeded" "❗️ slip 30 failed"

    my personal concern is for darwin but it could nice for others backends too

    opened by fredleger 0
  • Support python3.11

    Support python3.11

    In python3.11 inspect.getargspec removed at last (after deprecation in 3.0). Proposed fix:

    try:
        from inspect import getargspec
    except ImportError:
        from inspect import getfullargspec
        def getargspec(f):
            return tuple(getfullargspec(f))[:4]
    
    opened by pyhedgehog 1
  • Can not use shell variable as message

    Can not use shell variable as message

    I am using ntfy with in shell script. A python script prints a string which is assigned to a variable and I can echo the variable. But if I use this as ntfy -t "Title" send $var it returns an error. Is there a way to use a variable as ntfy's input?

    opened by Fuad-HH 1
  • Not auto starting after reboot

    Not auto starting after reboot

    I have motorola g82 phone with android 12. Ntfy doesn't start when phone reboots and there seems to be no option.

    As far as I can see, there is permission for this, however, Permission option is grayed for ntfy as it apparently doesnt need any.

    Is it possible to add this permission or app might not be useful on phones withour root.

    opened by majkinetor 0
  • Add compatibility with emoji 2.0

    Add compatibility with emoji 2.0

    Emoji deprecated the use_alias parameter in 1.6.2. This changes our use to the new API which exists since that version. Without this change, ntfy cannot be used with emoji 2.0 or higher.

    opened by theMarix 0
Releases(v2.4.4)
Owner
Daniel Schep
Maps, Python, Bikes, Serverless, & More
Daniel Schep
A terminal spreadsheet multitool for discovering and arranging data

VisiData v2.6.1 A terminal interface for exploring and arranging tabular data. VisiData supports tsv, csv, sqlite, json, xlsx (Excel), hdf5, and many

Saul Pwanson 6.2k Jan 04, 2023
Animefetch is an anime command-line system information tool written in python

Animefetch - v0.0.3 An anime command-line system information tool written in python. Description Animefetch is an anime command-line system informatio

Thadeuks 6 Jun 17, 2022
NudeNet wrapper made to provide a simple cli interface to the library

Nudenet Wrapper. Small warpper script for NudeNet Made to provide a small and easy to use cli interface with the library. You can indicate a single im

1 Oct 20, 2021
A cd command that learns - easily navigate directories from the command line

NAME autojump - a faster way to navigate your filesystem DESCRIPTION autojump is a faster way to navigate your filesystem. It works by maintaining a d

William Ting 14.5k Jan 03, 2023
Kattis shell for getting examples, testing and submitting.

Kattis shell for getting examples, testing and submitting.

Simon Green Kristensen 15 Sep 30, 2022
split-manga-pages: a command line utility written in Python that converts your double-page layout manga to single-page layout.

split-manga-pages split-manga-pages is a command line utility written in Python that converts your double-page layout manga (or any images in double p

Christoffer Aakre 3 May 24, 2022
🌈 Lightweight Python package that makes it easy and fast to print terminal messages in colors. 🌈

🌈 Colorist for Python 🌈 Lightweight Python package that makes it easy and fast to print terminal messages in colors. Prerequisites Python 3.9 or hig

Jakob Bagterp 1 Feb 05, 2022
A **CLI** folder organizer written in Python.

Fsorter Introduction A CLI folder organizer written in Python. Dependencies Before installing, install the following dependencies: Ubuntu/Debain Based

1 Nov 17, 2021
Wik is use to get information about anything on the shell using Wikipedia.

WIK wik is a tool to view wikipedia pages from your terminal. It also let you search for any wikipedia up to date article on one query from your termi

Yash Singh 340 Dec 18, 2022
Regis-ltmpt-auto - Program register ltmpt 2022 automatis

LTMPT Register Otomatis 2022 Program register ltmpt 2022 automatis dibuat untuk

1 Jan 13, 2022
A simple command-line tracert implementation in Python 3 using ICMP packets

Traceroute A simple command-line tracert implementation in Python 3 using ICMP packets Details Traceroute is a networking tool designed for tracing th

James 3 Jul 16, 2022
Unconventional ways to save an Image

Unexpected Image Saves Unconventional ways to save an image 😄 Have you ever been bored by the same old .png, .jpg, .jpeg, .gif and all other image ex

Eric Mendes 15 Nov 06, 2022
Wordle-textual - Play Wordle from the CLI, using Textual

Wordle, playable from the CLI This project seeks to emulate Wordle in your shell

PhenoM4n4n 3 Mar 29, 2022
This project contains the ClonedPerson dataset and code described in our paper "Cloning Outfits from Real-World Images to 3D Characters for Generalizable Person Re-Identification".

ClonedPerson This is the official repository for the ClonedPerson project, which contains the ClonedPerson dataset and code described in our paper "Cl

Yanan Wang 55 Dec 27, 2022
Simple script to download OTA packages from Realme's endpoint.

Realme OTA Downloader CLI tool (based on this C# program) to create requests to the Realme's endpoint. Requirements Python 3.9. pycryptodome. Installa

Roger Ortiz 64 Dec 28, 2022
Rover is a command line interface application that allows through browse through mission data, images, metadata from the NASA Official Website

🤖 rover Rover is a command line interface application that allows through browse through mission data, images, metadata from the NASA Official Websit

Saketha Ramanjam 4 Jan 19, 2022
A simple python application for running a CI pipeline locally

A simple python application for running a CI pipeline locally This app currently supports GitLab CI scripts

Tom Stowe 0 Jan 11, 2022
Python CLI utility and library for manipulating SQLite databases

sqlite-utils Python CLI utility and library for manipulating SQLite databases. Some feature highlights Pipe JSON (or CSV or TSV) directly into a new S

Simon Willison 1.1k Jan 04, 2023
⚙ A lightweight command line interface library for creating commands.

⚙ A lightweight command line interface library for creating cli commands. About | Installation | Usage | Features | Contributors | License About Next:

Serum 16 Sep 25, 2022
DShell, a tool that combines with discord.py and Jishaku to present to you, shell channels.

Discord shell or dshell for short is a Python package that combines with discord.py and Jishaku to transform an ordinary Discord channel into one capable of running bash commands using a Discord bot.

11 Nov 15, 2022