+ 1
Protection, and turning into an exe python file How to turn a python file into exe, so that no one could then find out my code
4 Answers
+ 4
Packing the Python Interpreter into an executable doesn't come across as a very good method to obfuscating source code.
Usually people who use source that they wish to protect incorporate obfuscation techniques into their code implicitly, i.e., in the code itself.
This is what a lot of people do with .NET applications running with C#, as C# is very easy to decompile due to its dependency on .NET.
+ 2
As for converting, I can't really help, but I thought Iâd warn you. No code is âunhackableâ. There are tons of decompilers on the internet that will make short work of your file. It makes it harder, but not near impossible to get the source.
+ 2
the age old cat and mouse game