美文网首页
Linux下编译py文件为so

Linux下编译py文件为so

作者: Bug2Coder | 来源:发表于2019-10-07 20:55 被阅读0次
    1、准备工作
    1. 在系统环境下安装cython
    sudo pip3 install cython
    
    1. 将需要编译的py 文件格式化为标准包的格式
    2、编译过程

    在本程序同级目录及子目录下所有py文件编译为so文件

    # -* -coding: UTF-8 -* -
    
    import sys, os, shutil, time
    from distutils.core import setup
    from Cython.Build import cythonize
    
    starttime = time.time()
    currdir = os.path.abspath('.')
    parentpath = sys.argv[1] if len(sys.argv) > 1 else ""
    setupfile = os.path.join(os.path.abspath('.'), __file__)
    build_dir = "build"
    build_tmp_dir = build_dir + "/temp"
    
    
    def getpy(basepath=os.path.abspath('.'), parentpath='', name='', excepts=(), copyOther=False, delC=False):
        """
        获取py文件的路径
        :param basepath: 根路径
        :param parentpath: 父路径
        :param name: 文件/夹
        :param excepts: 排除文件
        :param copy: 是否copy其他文件
        :return: py文件的迭代器
        """
        fullpath = os.path.join(basepath, parentpath, name)
        for fname in os.listdir(fullpath):
            ffile = os.path.join(fullpath, fname)
            if os.path.isdir(ffile) and fname != build_dir and not fname.startswith('.'):
                for f in getpy(basepath, os.path.join(parentpath, name), fname, excepts, copyOther, delC):
                    yield f
            elif os.path.isfile(ffile):
                ext = os.path.splitext(fname)[1]
                if ext == ".c":
                    if delC and os.stat(ffile).st_mtime > starttime:
                        os.remove(ffile)
                elif ffile not in excepts and os.path.splitext(fname)[1] not in ('.pyc', '.pyx'):
                    if os.path.splitext(fname)[1] in ('.py', '.pyx') and not fname.startswith('__'):
                        yield os.path.join(parentpath, name, fname)
                    elif copyOther:
                        dstdir = os.path.join(basepath, build_dir, parentpath, name)
                        if not os.path.isdir(dstdir): os.makedirs(dstdir)
                        shutil.copyfile(ffile, os.path.join(dstdir, fname))
            else:
                pass
    
    
    # 获取py列表
    module_list = list(getpy(basepath=currdir, parentpath=parentpath, excepts=(setupfile)))
    
    try:
        setup(ext_modules=cythonize(module_list), script_args=["build_ext", "-b", build_dir, "-t", build_tmp_dir])
    except Exception as ex:
        print("error:", ex)
    else:
        module_list = list(getpy(basepath=currdir, parentpath=parentpath, excepts=(setupfile), copyOther=True))
    
    module_list = list(getpy(basepath=currdir, parentpath=parentpath, excepts=(setupfile), delC=True))
    if os.path.exists(build_tmp_dir): shutil.rmtree(build_tmp_dir)
    
    print("complate! time:", time.time() - starttime, 's')
    

    输出目录:
    build目录下so文件
    注意事项:
    1、文件名称:不可改变模块名称,可去除模块名和扩展(.so)之间的系统标示。
    2、使用模块时模块目录下需要init.py文件,方可成功导入。
    3、使用时的python版本和编码需要和模块一致

    相关文章

      网友评论

          本文标题:Linux下编译py文件为so

          本文链接:https://www.haomeiwen.com/subject/nqtvpctx.html