Metadata-Version: 2.1
Name: sky-remote
Version: 1.0
Summary: Python module to send remote control commands to a Sky TV box
Home-page: https://github.com/WoolDoughnut310/sky-remote
Author: J. Nma
Author-email: wooldoughnutspi@outlook.com
License: UNKNOWN
Description: # sky-remote
        Python module to send remote control commands to a Sky TV box
        
        ## Usage
        #### Installation
        `pip install sky-remote`
        #### Simple example
        ```python
        from sky_remote import SkyRemote
        
        remoteControl = sky_remote.SkyRemote('192.168.0.40')
        
        # Just send a command
        remoteControl.press('power')
        
        # Now send sequences of commands
        remoteControl.press(['channelup', 'record', 'select'])
        ```
        ### Sky Q (if firmware < 060)
        ```python
        remoteControl = SkyRemote('192.168.0.40', SkyRemote.SKY_Q_LEGACY)
        ```
        ### Remote control commands
        `sky` `power`
        
        `tvguide` or `home` `boxoffice` `services` or `search` `interactive` or `sidebar`
        
        `up` `down` `left` `right` `select`
        
        `channelup` `channeldown` `i`
        
        `backup` or `dismiss` `text` `help`
        
        `play` `pause` `rewind` `fastforward` `stop` `record`
        
        `red` `green` `yellow` `blue`
        
        `0` `1` `2` `3` `4` `5` `6` `7` `8` `9`
        
Keywords: sky-remote python3 tcp/ip
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3
Description-Content-Type: text/markdown
