ysimonx
ysimonx
> Thanks for suggesting this, i am looking into BSP (to know what is it) @HidenoriMatsubayashi I am trying to help @Tom3652 . we have a iMX8 nano version, without...
please merge this PR
here is the workaround I made ``` rest_client.login(username=username, password=password) token = rest_client.api_client.configuration.api_key["X-Authorization"] packs = rest_client.get_ota_packages_v1(100,0,None, None, None) first_package = packs.data[0] url = "https://xxxx.com"+ "/api/otaPackage/{otaPackageId}/download".replace("{otaPackageId}",first_package.id.id ) with open(first_package.file_name, "wb") as f:...