Git Product home page Git Product logo

notifier's Introduction

Notifier

Notifier is a Python messaging gateway, that can be used as a Python module or standalone CLI script. Messages can be sent to either SMTP email server or the notification service PushOver

Installation

Download and unpack notifier.py to the /usr/local/bin folder.

cp notifier.py /usr/local/bin
chmod 755 /usr/local/bin/notifier.py

Copy etc/notifier.conf to the /etc/ directory

cp notifier.conf /etc

Configuration

Edit the /etc/notifier.conf file and add your SMTP Email and notification service settings.

Command Line Use

You can send a message to both email and push notification via the CLI by using the following format

python notifier.py -s Subject -m Message to send

Python Module

To use within Python simple place notifier.py within your project and use the following code example

# Notifier
import notifier

# Config
import ConfigParser

# Use your own application based config file
config_file = '/etc/myApp.conf'

# Create your message
message = "This is the message I wish to send \n"

# Set the Config
notifier.setConfig(config)

# Set the Message
notifier.setMessage(message) 

# Send the Message to email and notification service
notifier.sendMessage()

notifier's People

Contributors

worfinator avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.