0

I want to create a python .exe file in order to sell it to a client, however I'm worried that python can easily be reversed and the source code can be found, rendering my work less valuable for the future. Is there any way I can compile python code and make it irreversible?

Any other suggestions to go about solving this issue are welcomed.

1 Answers1

0

you can also install auto_py_to_exe with pip, call it in your terminal to open it, just select your .py file and itll convert it to an .exe for you

  • 2
    [This question](https://stackoverflow.com/q/70715083/11659881) and [this one](https://stackoverflow.com/q/51227091/11659881) suggest that the compilation process that you propose may be reversible. – Kraigolas Aug 04 '22 at 00:47
  • 1
    Yeah but as far as I understand when an .exe file is produced this way it can be reversed back to its source code – blindProgrammer Aug 04 '22 at 22:35