I'm 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 use some third-party library providing a list of standard library modules (https://github.com/jackmaney/python-stdlib-list , for example) and include all of them as hiddenimports, but I am looking for 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/77c69970-cd35-45db-8478-1cf978efc0acn%40googlegroups.com.
