
Security News
Open Source Maintainers Feeling the Weight of the EU’s Cyber Resilience Act
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
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.
Version 1.0.0 and above makes all these calls asynchronously. It breaks the compatibility of previous codes
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
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.
Not implemented
FAQs
Provides asynchronous authentication and access to Livebox
We found that aiosysbus demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.