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.6.tar.gz (42.1 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.6-py3-none-any.whl (40.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: aiosysbus-1.1.6.tar.gz
  • Upload date:
  • Size: 42.1 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.6.tar.gz
Algorithm Hash digest
SHA256 7646b9e56e44561d06ce3f434de39df72ccbb9bf2984b9e2d64d803f3921a2bd
MD5 a0af756e89a62dc6868137725c20bea9
BLAKE2b-256 bfa3f5aeec7d828c46330fce1eb4c106d81f1766f08851c506977190fadc036a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiosysbus-1.1.6-py3-none-any.whl
  • Upload date:
  • Size: 40.1 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.6-py3-none-any.whl
Algorithm Hash digest
SHA256 b4d3cb44d5528c959e52f9b6915b167260ca4422cc5eab5184c042d17ed2666f
MD5 207fa443c2a8d755cf9ff0fbb6e376fb
BLAKE2b-256 72f0ea7c172353602aaed4c140c68bf2a13a53738d9240aed2238c5be17ac245

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