Skip to main content

Sends a desktop notification when a process finishes

Project description

Notify Me After

About

Notify Me After (nma) is a python package that sends a desktop notification whenever a shell process or decorated function finishes execution. This repository provides a python shell script for general use and a decorator for use within python code.

Requirements:

  • Linux or MacOS
    • If running Linux, send-notify also needs to be installed
      • Google it for your distro. It's probably already installed, unless you're running something like arch with no desktop enviroment.
    • If running MacOS, terminal-notifier also needs to be installed
      • brew install terminal-notifier
  • python 3.6+

Installation

enter the nma directory and run python3 -m pip install .

Examples

In shell scripts

nma "echo test"

nma "sudo pacman -Syu"

nma "sleep 1; echo test"

sleep 1; echo test | nma -

my_func() {
    sleep .1;
}
my_func | nma -

Decorator

from nma.notify_decorator import notify_after
@notify_after
def test():
    print("basic test")

Unimplemented Features

  • Call script via piping (ex: sleep 1 | nma -)
  • Email notifications
  • Text notifications

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nma-0.1.tar.gz (7.0 kB view hashes)

Uploaded Source

Built Distribution

nma-0.1-py3-none-any.whl (8.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page