compile python file code example
Example 1: compile python to pyc
import py_compile
py_compile.compile('yourFile.py')
# the compiled file will be saved as yourfile.pyc in a __pycache__ folder, which will be created the same folder as yourfile.py
Example 2: compiling python code
import py_compile
py_compile.compile("mymodule.py")
Example 3: compiling python code
import compileall
compileall.compile_dir("mylib", force=1)