caronc/apprise

By GitHub - 2021-03-23

Description

Apprise - Push Notifications that work with just about every platform! - caronc/apprise

Summary

  • README.md ap·prise / verb To inform or tell (someone).
  • Supported Notifications Popular Notification Services The table below identifies the services this tool supports and some example service urls you need to use in order to take advantage of it.
  • importapprise# Create an Apprise instanceapobj=apprise.
  • Apprise() # Add at least one service you want to notifyapobj.add('mailto://myuser:mypass@hotmail.com') # Then send your attachment.apobj.notify( title='A great photo of our family', body='The flash caused Jane to close her eyes!

 

Topics

  1. Management (0.16)
  2. Coding (0.13)
  3. Backend (0.09)

Similar Articles

How to Build a Python GUI Application With wxPython

By realpython - 2020-12-14

In this step-by-step tutorial, you'll learn how to create a cross-platform graphical user interface (GUI) using Python and the wxPython toolkit. A graphical user interface is an application that has b ...

Creating beautiful maps with Python

By Medium - 2021-01-31

I always liked city maps and a few weeks ago I decided to build my own artistic versions of it. After googling a little bit I discovered this incredible tutorial written by Frank Ceballos. It is a…