126

Re: Kodi Add-On Beta Discussion

Failed TV Shows: 364047
Motherland: Fort Salem

127

Re: Kodi Add-On Beta Discussion

Thanks, fixed!

128 (edited by Clumpco 2023-12-06 22:29:27)

Re: Kodi Add-On Beta Discussion

Kodi 21 on Nvidia Shield Pro
Installing add-on throws an error

EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
                                                    - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
                                                   Error Type: <class 'ModuleNotFoundError'>
                                                   Error Contents: No module named 'six'
                                                   Traceback (most recent call last):
                                                     File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.service.next-episode/service.py", line 8, in <module>
                                                       from libs.exception_logger import log_exception
                                                     File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.service.next-episode/libs/exception_logger.py", line 24, in <module>
                                                       import six
                                                   ModuleNotFoundError: No module named 'six'
                                                   -->End of Python script error report<--

The dependencies button on the add-on page shows Kodi Six as installed, version 0.1.3.1
Help please!
Thanks

129

Re: Kodi Add-On Beta Discussion

Hi Clumpco, the easiest way for you to fix this is to Google search "ModuleNotFoundError: No module named 'six'". You'll find a number of threads explaining how people have fixed this problem as it is very common.

Most fixes involve uninstalling six and then reinstalling it.

Hope that helps!

Clumpco wrote:

Kodi 21 on Nvidia Shield Pro
Installing add-on throws an error

EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
                                                    - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
                                                   Error Type: <class 'ModuleNotFoundError'>
                                                   Error Contents: No module named 'six'
                                                   Traceback (most recent call last):
                                                     File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.service.next-episode/service.py", line 8, in <module>
                                                       from libs.exception_logger import log_exception
                                                     File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.service.next-episode/libs/exception_logger.py", line 24, in <module>
                                                       import six
                                                   ModuleNotFoundError: No module named 'six'
                                                   -->End of Python script error report<--

The dependencies button on the add-on page shows Kodi Six as installed, version 0.1.3.1
Help please!
Thanks

130

Re: Kodi Add-On Beta Discussion

Revent wrote:

Hi Clumpco, the easiest way for you to fix this is to Google search "ModuleNotFoundError: No module named 'six'". You'll find a number of threads explaining how people have fixed this problem as it is very common.

Most fixes involve uninstalling six and then reinstalling it.

Hope that helps!

OK, thanks for that - one or two problems...

  • Most tutorials say to go into Kodi's addon menu and hit "get more" - not present in Nexus

  • Everybody (even Kodi) says it's in the Kodi repository - it ain't!

  • I can "uninstall" it from the NextEpisode dependencies menu, reinstall just gives the same problem.

  • Finally people mostly say "pip install python-six" - I would if I could, but I doubt that Android would accept that, if I could find a place to type it in.

Has anybody got a link to a working zip of kodi six please?

131

Re: Kodi Add-On Beta Discussion

Kodi 21 on Nvidia Shield Pro
Installing add-on throws an error

I hope Santah spots this..
I have managed to get the add-on installed and working by a huge kludge. I have commented out line 24 in exception_logger.py so that it does not try to import "six".
This allows the add-on to be enabled but obviously will throw an error every time exception_logger.py tries to use functions from "six" (six.iteritems and six.text_type)
I tried putting a copy of six.py in the next-episode app and library folders, it still does not find it.
Kodi is showing six as installed (at long last) but still no dice.
I don't know if this is problem that is specific to the latest Nexus version, the Nvidia Shield or my specific system. I would rather not regress Nexus as I would lose Dolby Vision.
Is there any way you could modify exception_logger.py so that six is not needed at all?
Cheers

132

Re: Kodi Add-On Beta Discussion

Hey Clumpco. I follow this thread, but unfortunately I cannot directly help (as I did not develop the add-on myself and I'm not familiar with the language and dependencies).

This is the official repository of the add-on though:

https://github.com/santah/next-episode-kodi/

and if you post a new issue on the issues page:

https://github.com/santah/next-episode-kodi/issues

the developer will most likely notice it and if he has time - address the issue ...

133

Re: Kodi Add-On Beta Discussion

santah wrote:

Hey Clumpco. I follow this thread, but unfortunately I cannot directly help (as I did not develop the add-on myself and I'm not familiar with the language and dependencies).

This is the official repository of the add-on though:

https://github.com/santah/next-episode-kodi/

and if you post a new issue on the issues page:

https://github.com/santah/next-episode-kodi/issues

the developer will most likely notice it and if he has time - address the issue ...

Cheers for that, will do!

134

Re: Kodi Add-On Beta Discussion

Clumpco wrote:
Revent wrote:

Hi Clumpco, the easiest way for you to fix this is to Google search "ModuleNotFoundError: No module named 'six'". You'll find a number of threads explaining how people have fixed this problem as it is very common.

Most fixes involve uninstalling six and then reinstalling it.

Hope that helps!

OK, thanks for that - one or two problems...

  • Most tutorials say to go into Kodi's addon menu and hit "get more" - not present in Nexus

  • Everybody (even Kodi) says it's in the Kodi repository - it ain't!

  • I can "uninstall" it from the NextEpisode dependencies menu, reinstall just gives the same problem.

  • Finally people mostly say "pip install python-six" - I would if I could, but I doubt that Android would accept that, if I could find a place to type it in.

Has anybody got a link to a working zip of kodi six please?


I'm starting to remember why I went to Plex.

There is a download link on this Kodi Nexus page https://kodi.tv/addons/nexus/script.module.six/ that is in .zip format and compatible with all platforms.

135

Re: Kodi Add-On Beta Discussion

Revent wrote:

I'm starting to remember why I went to Plex.

There is a download link on this Kodi Nexus page https://kodi.tv/addons/nexus/script.module.six/ that is in .zip format and compatible with all platforms.

Been there, done that.
I've hacked the code about a bit so that it runs without needing six.

136 (edited by Conn0rs420 2025-04-16 20:08:34)

Re: Kodi Add-On Beta Discussion

Failed tvshow:462089
The feud 2025

137

Re: Kodi Add-On Beta Discussion

Conn0rs420 wrote:

Failed tvshow:462089
The feud 2025

Thanks for reporting this. Fixed!

138 (edited by Conn0rs420 2025-04-22 22:26:37)

Re: Kodi Add-On Beta Discussion

Error  #456986

Joe Lycetts United States Of Birmingham

139

Re: Kodi Add-On Beta Discussion

Conn0rs420 wrote:

Error  #456986

Joe Lycetts United States Of Birmingham

Thanks, fixed!

140

Re: Kodi Add-On Beta Discussion

466140

Johnny Vegas, art, ADHD and me.

series/johnny-vegas-art-adhd-and-me

Thank you.

141

Re: Kodi Add-On Beta Discussion

Thanks, fixed!

142 (edited by Conn0rs420 2025-11-05 22:24:49)

Re: Kodi Add-On Beta Discussion

Ftv 376354

https://thetvdb.com/series/celebrity-come-dine-with-me

143

Re: Kodi Add-On Beta Discussion

Fixed!