I think this way, apache could be a little more faster. Am I right?
If you want, you can pre-compile everything as described at
http://effbot.org/pyfaq/how-do-i-create-a-pyc-file.htm
which shows you can issue
bash$ cd ~/code
bash$ python -m compileall .
[output]
which will compile each .py file into a corresponding .pyc file
within the current directory and subdirectories. I believe the
Debian variants (others may as well) do this in the system
directories upon installation so users don't have to recompile
all the system libraries.
The time saved is minimal, but there's no harm in preemptively
compiling your files.
-tim