Metadata-Version: 1.1
Name: PushbulletPythonLibrary
Version: 0.2
Summary: A Python Library and a simple command line app for Pushbullet.
Home-page: https://github.com/myles/pushbullet
Author: Myles Braithwaite
Author-email: me@mylesbraithwaite.com
License: BSD
Description: Pushbullet Python Library
        =========================
        
        A Python library (and super simple command line app) for Pushbullet_.
        
        .. _Pushbullet: https://pushbullet.com/
        
        Library Usage
        -------------
        
        .. code-block:: python
        
            >>> from pushbullet import Pushbullet
            >>> pb = Pushbullet(api_key='replace-with-your-api-key')
            >>>
        
        List devices:
        
        .. code-block:: python
            
            >>> pb.list_devices()
            {u'shared_devices': [], u'devices': []}
            >>>
        
        Send a note:
        
        .. code-block:: python
            
            >>> pb.bullet_note(device_idn, title="Hello, World!", body="This is an example note.")
            {}
            >>>
        
        Command Line Usage
        ------------------
        
        .. code-block:: shell-session
            
            $ pushbullet --help
        
Keywords: pushbullet
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: BSD License
