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 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 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

22nd Jan 2019, 4:42 PM
Regedit
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.
22nd Jan 2019, 7:13 PM
Dread
Dread - avatar
+ 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.
22nd Jan 2019, 4:52 PM
Jax
Jax - avatar
+ 2
the age old cat and mouse game
23rd Jan 2019, 3:10 AM
Jason Kennedy