Skip to main content

Provides asynchronous authentication and access to Livebox

Project 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.

WARNING

Version 1.0.0 and above makes all these calls asynchronously. It breaks the compatibility of previous codes

Install

Use the PIP package manager

$ pip install aiosysbus

Or manually download and install the last version from github

$ git clone https://github.com/cyr-ius/aiosysbus.git
$ python setup.py install

Get started

aiosysbus < 1.0.0

# Import the aiosysbus package.
from aiosysbus import AIOSysbus

async def reboot()
    # Instantiate the Sysbus class using default options.
    lvbx = AIOSysbus('192.168.1.1','80','xxxxxx')

    # Connect to the livebox with default options.
    lvbx.connect()

    # Do something useful, rebooting your livebox for example.
    lvbx.system.reboot()

    # Properly close the session.
    lvbx.close()

aiosysbus >= 1.0.0

import asyncio
import logging

async def async_main() -> None:
    # Instantiate the Sysbus class using default options.
    api = AIOSysbus(username=xxxx, password=xxxx, host=HOST)
    # Connect to the livebox.
    await api.async_connect()
    # Query example
    parameters = {"parameters": {"expression": {"wifi": "wifi && .Active==False"}}}
    devices = await api.devices.async_get_devices(parameters)

    await api.async_close()

if __name__ == "__main__":
    loop = asyncio.get_event_loop()
    loop.run_until_complete(async_main())

Have a look at the example.py for a more complete overview.

Notes on HTTPS

Not implemented

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aiosysbus-1.1.1.tar.gz (41.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

aiosysbus-1.1.1-py3-none-any.whl (39.9 kB view details)

Uploaded Python 3

File details

Details for the file aiosysbus-1.1.1.tar.gz.

File metadata

  • Download URL: aiosysbus-1.1.1.tar.gz
  • Upload date:
  • Size: 41.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for aiosysbus-1.1.1.tar.gz
Algorithm Hash digest
SHA256 7394bb9d047923bc91f48fc8627ebcc9e3875735cec6553861f4bc50acb4d4f5
MD5 1c6350813726716e0aa5b378a44ee94f
BLAKE2b-256 7b11995e2a5a560c1d9d2a9d2d9b7fc26914aec635e1aa6ad82e3859d09f23df

See more details on using hashes here.

File details

Details for the file aiosysbus-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: aiosysbus-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 39.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for aiosysbus-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f969183441d227a2b744cdbea8148da515b48591d421637b4af32b1907239ba2
MD5 fc8277e2fabba450133481df84e64919
BLAKE2b-256 cf87871d805b260e54a26803fb64b7f72b657df97644a2f0f32832950b8a2f20

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page