Cython

2021/5/5 18:25:13

本文主要是介绍Cython,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

参考链接:
官方文档:https://cython.readthedocs.io/en/latest/
中文文档:https://www.bookstack.cn/read/cython-doc-zh/docs-29.md
多个库编译成一个库:https://paper.seebug.org/1139/
https://stackoverflow.com/questions/30157363/collapse-multiple-submodules-to-one-cython-extension

源代码封装成动态库

python setup.py build_ext --inplace

from distutils.core import setup
from distutils.extension import Extension
from Cython.Build import cythonize

extensions = [
    Extension(
        "mesh_net.network", ["network.py"]
    ),
    Extension(
        "mesh_net.mesh", ["mesh.py"]
    ),
    Extension(
        "mesh_net.mesh_process", ["mesh_process.py"]
    ),
    Extension(
        "mesh_net.mesh_union", ["mesh_union.py"]
    )
]

setup(
    name="mesh_net",
    ext_modules=cythonize(extensions)
)


这篇关于Cython的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程