.pyc files are compiled files outputted by the Python interpreter.
Solution for How to generate a PYC file from a PY file in Python : You can use py_compile.compile() to generate a .pyc file from a .py file Call py_compile.compile(file) with file as a .py source file to compile it to a .pyc file.