I am trying to bundle an application that is extendable via plugins. The plugins are regular Python modules. The problem is that these plugins may import any module from the standard library (third-party modules imports are not a problem, they are not allowed by plugin guidelines).
 
Is it possible to unconditionally include all of the standard library modules?
 
I can get a list of all of the standard library modules from some third-party library (https://github.com/jackmaney/python-stdlib-list, for example) and include each module as a hidden import, but I am looking for a more elegant solution.
 
 

--
You received this message because you are subscribed to the Google Groups "PyInstaller" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To view this discussion on the web visit https://groups.google.com/d/msgid/pyinstaller/301931606916275%40mail.yandex.ru.

Reply via email to