initial commit

This commit is contained in:
Chris Caron
2017-11-25 16:51:46 -05:00
parent cc3b969baf
commit a8f57a8b6e
74 changed files with 10482 additions and 0 deletions

26
bin/apprise.py Executable file
View File

@@ -0,0 +1,26 @@
#!/usr/bin/env python
def _main():
"""\
Usage: apprise [options] [URL ...]
Send notifications to a variety of different supported services.
See also https://github.com/caronc/apprise
URL The notification service URL
Options:
-h, --help show this message
-t TITLE, --title TITLE Specify a notification title.
-b BODY, --body BODY Specify a notification body.
-i IMGURL, --image IMGURL Specify an image to send with the notification.
The image should be in the format of a URL
string such as file:///local/path/to/file.png or
a remote site like: http://my.host/my.image.png.
"""
if __name__ == '__main__':
_main()