zoukankan      html  css  js  c++  java
  • python py生成为pyc文件

    生成单个pyc文件

    python就是个好东西,它提供了内置的类库来实现把py文件编译为pyc文件,这个模块就是 py_compile 模块。

    使用方法非常简单,如下所示,直接在idle中,就可以把一个py文件编译为pyc文件了。(假设在windows环境下)

     

    import py_compile

    py_compile.compile(r'H:/game/test.py')

     

    compile函数原型:

    compile(file[, cfile[, dfile[, doraise]]])

    file 表示需要编译的py文件的路径

    cfile 表示编译后的pyc文件名称和路径,默认为直接在file文件名后加c 或者 o,o表示优化的字节码

    dfile 这个参数英文看不明白,请各位大大赐教。(鄙视下自己)原文:it is used as the name of the source file in error messages instead of file

    doraise 可以是两个值,True或者False,如果为True,则会引发一个PyCompileError,否则如果编译文件出错,则会有一个错误,默认显示在sys.stderr中,而不会引发异常

    (来自python2.5文档)

    批量生成pyc文件

    一般来说,我们的工程都是在一个目录下的,一般不会说仅仅编译一个py文件而已,而是需要把整个文件夹下的py文件都编译为pyc文件,python又为了我们提供了另一个模块:compileall 。使用方法如下:

     

    import compileall

    compileall.compile_dir(r'H:/game')

     

    这样就把game目录,以及其子目录下的py文件编译为pyc文件了。嘿嘿,够方便吧。来看下compile_dir函数的说明:

     

    compile_dir(dir[, maxlevels[, ddir[, force[, rx[, quiet]]]]])

    dir 表示需要编译的文件夹位置

    maxlevels 表示需要递归编译的子目录的层数,默认是10层,即默认会把10层子目录中的py文件编译为pyc

    ddir 英文没明白,原文:it is used as the base path from which the filenames used in error messages will be generated。

    force 如果为True,则会强制编译为pyc,即使现在的pyc文件是最新的,还会强制编译一次,pyc文件中包含有时间戳,python编译器会根据时间来决定,是否需要重新生成一次pyc文件

    rx 表示一个正则表达式,比如可以排除掉不想要的目录,或者只有符合条件的目录才进行编译

    quiet 如果为True,则编译后,不会在标准输出中,打印出信息。

    代码片段:

    #-*- coding=utf-8

    '''

    #编译目录下所有py文件为 pyc文件

    import compileall

    compileall.compile_dir(r"d:python")  #r"d:python" 路径

    '''

    #编译 单个py文件为 pyc文件

     

    import py_compile

    py_compile.compile(r"d:python est.py") # r"d:python est.py":路径

  • 相关阅读:
    <frame>、<iframe>、<embed>、<object> 和 <applet>
    xss攻击
    回流 和 重绘
    defer 和 async 的区别
    从输入URL到浏览页面的过程
    webkit vs v8
    缓存
    LeetCode
    LeetCode
    LeetCode
  • 原文地址:https://www.cnblogs.com/drgcaosheng/p/5468623.html
Copyright © 2011-2022 走看看