I'm new to python, and I'm evaluating developing desktop programs with Python + PySide, and found that cx_freeze works very good in converting my python code into executables, and it's cross-platform.
My question is, can someone else decompile an EXE generated by cx_freeze back to fully readable code , as if my original source code?
Note: I'm not worried about someone cracking my program, but just don't want someone else can take my code and developed base on it.
Thanks.