Metadata-Version: 1.1
Name: blink
Version: 0.1.2
Summary: Python API for the Blink Home Security Camera System
Home-page: https://github.com/keredson/blink
Author: Derek Anderson
Author-email: public@kered.org
License: UNKNOWN
Description: .. figure:: https://cloud.githubusercontent.com/assets/2049665/24316082/58e34c7e-10b9-11e7-93fa-88ca46f13d46.png
           :alt: image
        
           image
        
        Blink
        =====
        
        Python API for the Blink Home Security Camera System
        
        This is based off the documentation at:
        https://github.com/MattTW/BlinkMonitorProtocol
        
        Usage
        -----
        
        .. code:: python
        
            import blink
            b = blink.Blink()
            events = b.events()
            an_event = events[0]
            mp4_data = b.download_video(an_event)
        
        This assumes you have a file ``~/.blinkconfig`` that looks like this:
        
        ::
        
            me@somewhere.net: my_password
        
        Alternatively, you can init Blink like so:
        
        ::
        
            b = blink.Blink(email='me@somewhere.net', password='my_password')
        
        Archiving Video
        ---------------
        
        Blink eventually deletes old video clips. If you want to archive your
        videos locally, run:
        
        ::
        
            $ python -m blink --archive path/to/archive_dir
        
        Typically this would be put into a cron job.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
