You're misunderstanding how PyInstaller works. Packages aren't copied into 
the dist folder - they're compiled, compressed then baked directly into the 
EXE - so looking in the dist folder won't tell you anything. It's more 
likely that PyInstaller just doesn't understand that your obfuscated code 
is code, in which case you'll have to add it as a data file (which will 
appear in the dist folder) and be careful to mark any of its dependencies 
as hidden imports.
On Monday, May 10, 2021 at 8:18:30 AM UTC+1 bat...@gmail.com wrote:

> Hi,
>
> I am using two obfusctaed library in my project, thus pyinstaller hooks 
> can not find all the packages. When I give missing packages as hidden 
> imports they are not included in the dist folder.
>
> I also tried to add custom hooks for missing pakcages but that didn't help.
>
> Is there any way to disable hooks and import everthing given in hidden 
> imports?
>
> I tried 'pyinstaller my.spec' and 'python -m PyInstaller my.spec' and 
> result was the same.
>
> KR
> Batuhan A.
>

-- 
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 pyinstaller+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/pyinstaller/d9620ca4-f3ae-4c44-b886-5af03d598a3dn%40googlegroups.com.

Reply via email to