Metadata-Version: 2.0
Name: popcornnotify
Version: 0.1.2
Summary: Send simple emails and text messages from one API
Home-page: https://popcornnotify.com
Author: Abe
Author-email: abe@popcornnotify.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Communications :: Email
Classifier: Topic :: Communications :: Telephony
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Requires-Dist: requests

The Popcorn Notify Python Client
================================

This the  Python client library for `Popcorn Notify <https://www.PopcornNotify.com>`_.
Popcorn Notify is a simple non-blocking API to send emails or text messages 
from within your code.

---

::

    from popcornnotify import notify

    notify('contact@popcornnotify.com', 'A new user signed up!', subject="Server Message")

    notify('5555555555', 'Long script has finished running.')

    notify(['contact@popcornnotify.com','support@popcornnotify.com','5555555555'], 'The server is on fire.')


