Fetch data from bouygues bbox
Project description
bboxpy
Manage your Bouygues Bbox in Python
Easily manage your Bbox in Python. Check your config, configure your dhcp, disable your wifi, monitor your LAN activity and many others, on LAN or remotely.
bboxpy is a python library implementing fir the Bbox.
This project is based on stilllman/aiofreepybox, which provides the same features as aiofreepybox in a synchronous manner.
Install
Use the PIP package manager
$ pip install bboxpy
Or manually download and install the last version from github
$ git clone https://github.com/cyr-ius/bboxpy.git
$ python setup.py install
Get started
# Import the bboxpy package.
from bboxpy import Bbox
from bboxpy.exceptions import BboxException
async def async_main()
# Instantiate the Sysbus class using default options.
bbox = Bbox(hostname="https://192.168.1.254",pass='xxxxxx')
# Connect to the livebox with default options.
await bbox.async_login()
try:
device_info = await bbox.device.async_get_bbox_info()
print(device_info)
except BboxException as error:
logger.error(error)
# Do something useful, rebooting your livebox for example.
await bbox.device.async_reboot()
# Properly close the session.
await bbox.async_logout()
if __name__ == "__main__":
loop = asyncio.get_event_loop()
loop.run_until_complete(async_main())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
bboxpy-1.1.5.tar.gz
(18.5 kB
view details)
Built Distribution
bboxpy-1.1.5-py3-none-any.whl
(19.5 kB
view details)
File details
Details for the file bboxpy-1.1.5.tar.gz
.
File metadata
- Download URL: bboxpy-1.1.5.tar.gz
- Upload date:
- Size: 18.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a1c54cd1e327598173af606410ece2a80bc9ca4bebf3e8282e6c8f73ec3cc2b1 |
|
MD5 | 9110a2c61e0b755d9560b2bba23c95d7 |
|
BLAKE2b-256 | 315a8c146e73563b01be49e86fc0e37f9966c87bffe9d53d3fd234b6aa0e09ce |
File details
Details for the file bboxpy-1.1.5-py3-none-any.whl
.
File metadata
- Download URL: bboxpy-1.1.5-py3-none-any.whl
- Upload date:
- Size: 19.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 32a02f313859ba3a671b42845d2fdae3cd9f6225db3aa000773b5b97ed168408 |
|
MD5 | 2b59ac96098b55b60db1f4a7c17a5765 |
|
BLAKE2b-256 | 5496d3fd096099661cdd0b60b0b076aba4578358a433f8c9feb9df908e6bda9c |