This may seem like a dumb question, but why would you compile a python script? You can run them directly from the .py file and it works fine, so is there a performance advantage or something? I also notice that some files in my application get compiled into .pyc while others do not, why is this?
|
|
It's compiled to bytecode which can be used much, much, much faster. The reason some files aren't compiled is that the main script, which you invoke with Important addition by Ben Blank:
|
||||
|
|
|
The .pyc file is Python that has already been compiled to byte-code. Python automatically runs a .pyc file if it finds one with the same name as a .py file you invoke. "An Introduction to Python" says this about compiled Python files:
The advantage of running a .pyc file is that Python doesn't have to incur the overhead of compiling it before running it. Since Python would compile to byte-code before running a .py file anyway, there shouldn't be any performance improvement aside from that. How much improvement can you get from using compiled .pyc files? That depends on what the script does. For a very brief script that simply prints "Hello World," compiling could constitute a large percentage of the total startup-and-run time. But the cost of compiling a script relative to the total run time diminishes for longer-running scripts. The script you name on the command-line is never saved to a .pyc file. Only modules loaded by that "main" script are saved in that way. |
||
|
|
|
|
As already mentioned, you can get a performance increase from having your python code compiled into bytecode. This is usually handled by python itself, for imported scripts only. Another reason you might want to compile your python code, could be to protect your intellectual property from being copied and/or modified. You can read more about this in the Python documentation. |
||||||
|
|
|
Yep, performance is the main reason and, as far as I know, the only reason. If some of your files aren't getting compiled, maybe Python isn't able to write to the .pyc file, perhaps because of the directory permissions or something. Or perhaps the uncompiled files just aren't ever getting loaded... (scripts/modules only get compiled when they first get loaded) |
||
|
|
|
|
There is a performance increase in running compiled python, however when you run a .py python will compile and store it, and as long as the .py does not change it will always use the compiled version. With any interpeted language when the file is used the process looks something like this: obviously by using pre-compiled code you can eliminate step 2, this applies python, PHP and others. Heres an interesting blog post explaining the differences http://julipedia.blogspot.com/2004/07/compiled-vs-interpreted-languages.html |
|||
|
|
|
|
There's certainly a performance difference when running a compiled script. If you run normal |
||
|
|
