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
Release files for aiosysbus 1.2.5
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| aiosysbus-1.2.5.tar.gz | 44.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| aiosysbus-1.2.5-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 88.9 kB
Release files / aiosysbus-1.2.5.tar.gz
| Download URL | aiosysbus-1.2.5.tar.gz |
|---|---|
| Size | 44.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e1f8df483ba993748f89422a77fe33bcfe7010207086bb615101203115d9b3bb
|
|
BLAKE2b-256 checksum How to use checksums |
b1ad945d1be2680a933a0a06d69bab964b2e17656656ff23b96837681d7f1d98
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / aiosysbus-1.2.5-py3-none-any.whl
| Download URL | aiosysbus-1.2.5-py3-none-any.whl |
|---|---|
| Size | 43.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
91a469b5ed2014715d59642b5123ed719e4d660b40d22997cb5f6a0f7150bf4b
|
|
BLAKE2b-256 checksum How to use checksums |
685565da17a3c208ef3a9aced155936d5e65f7562b4020cca8c3cd85ab771bef
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency log