There're situations when we want to compile the python script.
In this case , we have a python script named your_script.py.
The next script code will make one new your_script.pyc file.
import py_compile
py_compile.compile('your_script.py')
Note: this will hide the python code, but some strings can be view.
For example , if you use this in your_script.py.
print 'This is a string'
The string This is a string can be show in pyc file.