You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm currently working on making my Kodi plugins to work with Python 3 (see https://kodi.tv/article/attention-addon-developers-migration-python-3). It is suggested to make all the plugins/scripts compatible with both, Python 2 and Python 3, so that the transition will be smooth.
Currently, script.module.youtube.dl does not work with Python 3. On a Python 3 Kodi test build, I get the following error, when I try to import it:
script.module.youtube.dl/lib/YDStreamExtractor.py", line 418
except YoutubeDLWrapper.youtube_dl.DownloadError, e:
^
SyntaxError: invalid syntax
There are probably many more lines, where the code is not compatible to Python 3.
Is it planned to release script.module.youtube.dl with Python 3 support?
The text was updated successfully, but these errors were encountered:
I'm currently working on making my Kodi plugins to work with Python 3 (see https://kodi.tv/article/attention-addon-developers-migration-python-3). It is suggested to make all the plugins/scripts compatible with both, Python 2 and Python 3, so that the transition will be smooth.
Currently,
script.module.youtube.dl
does not work with Python 3. On a Python 3 Kodi test build, I get the following error, when I try to import it:There are probably many more lines, where the code is not compatible to Python 3.
Is it planned to release
script.module.youtube.dl
with Python 3 support?The text was updated successfully, but these errors were encountered: