Falldog / pyconcrete

Protect your python script, encrypt it as .pye and decrypt when import it
Apache License 2.0
701 stars 150 forks source link

Does pyconcrete generate .pyc files during execution, if yes which location? #101

Closed halil-karabacak closed 1 year ago

halil-karabacak commented 1 year ago

Hi, first of all thanks for the effort.

My question is simple, I believe that pyconcrete should convert .pye files to at least .pyc file at some point. But I simply couldn't find the location because, probably, pyconcrete deletes the .pyc files after execution, which is too short my tracker cannot detect.

I also added delay during execution to find the location and tracked the whole fs but still none.

Thanks a lot!

Falldog commented 1 year ago

pyconcrete decrypt and loaded in memory, will not create any file at runtime

halil-karabacak commented 1 year ago

Thank you.