Metadata-Version: 2.1
Name: aiosysbus
Version: 0.0.9
Summary: Provides asynchronous authentication and access to Livebox
Home-page: https://github.com/cyr-ius/aiosysbus/tree/aiosysbus
Author: cyr-ius
Author-email: cyr-ius@ipocus.net
License: GNU GPLv3
Description: # aiosysbus
        Manage your Livebox in Python
        
        
        Easily manage your Livebox in Python.
        Check your config, configure your dhcp, disable your wifi, monitor your LAN activity and many others, on LAN or remotely.
        
        aiosysbus is a python library implementing fir the Livebox v3.
        
        This project is based on stilllman/aiofreepybox, which provides the same features as aiofreepybox in a synchronous manner.
        
        Install
        -------
        Use the PIP package manager
        ```bash
        $ pip install aiosysbus
        ```
        
        Or manually download and install the last version from github
        ```bash
        $ git clone https://github.com/cyr-ius/aiosysbus.git
        $ python setup.py install
        ```
        Get started
        -----------
        ```python
        # Import the aiosysbus package.
        from aiosysbus import Sysbus
        
        async def reboot()
            # Instantiate the Sysbus class using default options.
            lvbx = Sysbus()
        
            # Connect to the livebox with default options. 
            await lvbx.open('192.168.1.1','80','xxxxxx')
        
            # Do something useful, rebooting your livebox for example.
            await lvbx.system.reboot()
        
            # Properly close the session.
            await lvbx.close()
        ```
        Have a look at the [example.py](https://github.com/cyr-ius/aiosysbus/blob/master/example.py) for a more complete overview.
        
        Notes on HTTPS
        --------------
        Not implemented
        
Keywords: livebox async
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Framework :: AsyncIO
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Topic :: Home Automation
Description-Content-Type: text/markdown
