2018-05-01, 04:51
I'm attempting to test my addon with the test versions of Kodi with python 3. Ran into an issue because my addon currently uses script.module.requests.
The test version of Kodi crashes on the import call:
Nothing in the logs at the crash point. Are the current script.module.* addons expected to work with python 3, or would a completely seperate installation be required with different script.module.* addons?
The test version of Kodi crashes on the import call:
python:
try:
import requests
except:
xbmc.log(msg='script.module.requests is not installed and is required', level=xbmc.LOGERROR)
Nothing in the logs at the crash point. Are the current script.module.* addons expected to work with python 3, or would a completely seperate installation be required with different script.module.* addons?