This is a wrapper library for the IoT Open Lynx platform API:s. Most API-calls
are exposed as a Client
class with functions for every API-endpoint. All
models are also implemented as classes.
Run the following command to install the package using pip:
python3 -m pip install --upgrade iotopen-py-lynx
Create a Lynx client and use the functions on it to make API-calls.
from lynx import Client
cli = Client("https://lynx.iotopen.se", "abcdef123456789abcdef123456789")
installations = cli.get_installations()
print(installations)