本文主要是介绍把 a.py 编译生成 a.pyc 文件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
把 app.py 编译生成 app.pyc 文件
import os, shutil
import py_compile
compile_dir = './'
if(os.path.exists(compile_dir + 'app.py')):py_compile.compile(compile_dir + 'app.py')app_pyc_path = './__pycache__/app.cpython-36.pyc'app_dst = 'app.pyc'if (os.path.exists(app_dst)):os.remove(app_dst)if (os.path.exists(app_pyc_path)):shutil.copy(app_pyc_path, app_dst)
这篇关于把 a.py 编译生成 a.pyc 文件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!