Metadata-Version: 1.1
Name: py_irsend
Version: 1.0.1
Summary: A simple wrapper for lirc's irsend. 
Home-page: https://github.com/ChristopherRogers1991/python-irsend
Author: Christopher Rogers
Author-email: ChristopherRogers1991@gmail.com
License: GPLv3
Description: # python-irsend
        
        This is a simple wrapper for [lirc's irsend](http://www.lirc.org/html/irsend.html).
        
        ## Install:
        
        ```
        pip install py_irsend
        ```
        
        ## Basic Usage:
        
        ```
        >>> from py_irsend import irsend
        >>> irsend.list_remotes()
        ['lasko_heater', 'lights.conf', 'dynex_tv', 'logitech_z906', 'sabrent_hdmi_switch']
        >>> irsend.list_codes('logitech_z906')
        ['POWER', 'INPUT', 'MUTE', 'LEVEL', 'EFFECT', 'VOLUME_DOWN', 'VOLUME_UP']
        >>> irsend.send_once('logitech_z906', ['POWER'])
        ```
        
        It makes use of [subprocess](https://docs.python.org/2/library/subprocess.html)
        to call irsend. No attempts are made to handle errors (e.g. irsend not being
        installed, or lircd not running), and instead leaves those to the caller. See
        the documentation for subprocess (specifically
        [check_output](https://docs.python.org/2/library/subprocess.html#subprocess.check_output))
        to determine which exceptions may be raised.
        
Keywords: lirc irsend
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
