|
Whenever you run your script from the command line using "python myfile.py" it automatically generates a myfile.pyc. That file is still pretty "open", you can inspect it for all variables, classes, constants, basically symbol information but you can't read the source directly. py2exe, py2app, and freeze will turn you python program into an executable, that is probably the hardest form of python program to read.
|