Hi Folks
A little summary in case others are struggeling I did get this API to work. Im running
Hyundai Kia Connect API pypi package
In
OH 3.3.0 In Synology DSM 7.1 Docker
I had to install python in that container (which I already had) (apt-get install python3)
I had to install pip (apt get install pip)
Installed python package by (pip install hyundai-kia-connect-api)
There was two different dependencies that was missing, just install them using same method as above, missing dependencies will show as missing modules.
If your lucky you end up with a json respons.
Just supplied region, brand username, password and pin code as described in the link and made a carstatus.py that I hooked up with excecbinding (don’t forget whitelist) and a RAW string item
from hyundai_kia_connect_api import *
vm = VehicleManager(region=2, brand=1, username="username@gmail.com", password="password", pin="1234")
vm.check_and_refresh_token()
vm.update_all_vehicles_with_cached_state()
print(vm.vehicles)