This project implements parts of the devolo PLC devices API in Python. Communication to the devices is formatted in protobuf and the IDLs were kindly provided by devolo. Nevertheless, we might miss updates to the IDLs. If you discover a breakage, please feel free to report an issue.
Defining the system requirements with exact versions typically is difficult. But there is a tested environment:
- Linux
- Python 3.8.12
- pip 20.2.4
- httpx 0.21.0
- protobuf 3.17.3
- segno 1.5.2
- zeroconf 0.70.0
Other versions and even other operating systems might work. Feel free to tell us about your experience. If you want to run our unit tests, you also need:
- pytest 6.2.5
- pytest-asyncio 0.15.1
- pytest-httpx 0.18
In our versioning we follow Semantic Versioning.
The Python Package Index takes care for you. Just use pip.
pip install devolo-plc-api
First, you need to get the sources.
git clone [email protected]:2Fake/devolo_plc_api.git
Then you need to take care of the requirements.
cd devolo_plc_api
python setup.py install
If you want to run out tests, install the extra requirements and start pytest.
pip install -e .[test]
pytest
All features we currently support on device basis are shown in our examples. If you want to use the package asynchronously, please check example_async.py. If you want to use it synchronously, please check example_sync.py.
If you don't know the IP addresses of your devices, you can discover them. You will get a dictionary with the device's serial number as key. The connections to the devices will be already established, but you will have to take about disconnecting.
from devolo_plc_api.network import async_discover_network
devices = await async_discover_network()
await asyncio.gather(*[device.async_connect() for device in _devices.values()])
# Do your magic
await asyncio.gather(*[device.async_disconnect() for device in devices.values()])
Or in a synchronous setup:
from devolo_plc_api.network import discover_network
devices = discover_network()
for device in _devices.values():
device.connect()
# Do your magic
[device.disconnect() for device in devices.values()]
The following devolo devices were queried with at least one call to verify functionality:
- Magic 2 WiFi next
- Magic 2 WiFi 2-1
- Magic 2 LAN triple
- Magic 2 DinRail
- Magic 2 LAN 1-1
- Magic 1 WiFi mini
- Magic 1 WiFi 2-1
- Magic 1 LAN 1-1
- Repeater 5400
- Repeater 3000
- Repeater 1200
- Repeater ac+
- Repeater ac
- dLAN 1200+ WiFi ac
- dLAN 550+ Wifi
- dLAN 550 WiFi
However, other devices might work, some might have a limited functionality. Also firmware version will matter. If you discover something weird, we want to know.