在Python中生成DLL文件的最常用方法是使用Cython或者ctypes库。下面分别介绍这两种方法的使用步骤:
pip install cython
。example.pyx
的Cython源文件,其中包含你要生成为DLL的代码。例如:def add(a, b):
return a + b
setup.py
的Python脚本,用于构建DLL文件。例如:from distutils.core import setup
from Cython.Build import cythonize
setup(
ext_modules = cythonize("example.pyx"),
)
python setup.py build_ext --inplace
,该命令将生成一个名为example.pyd
的DLL文件。example.c
文件,其中包含以下代码:#include <stdio.h>
int add(int a, int b) {
return a + b;
}
gcc -shared -o example.dll example.c
,该命令将生成一个名为example.dll
的DLL文件。import ctypes
example = ctypes.CDLL('./example.dll')
result = example.add(2, 3)
print(result) # 输出:5
无论你选择使用Cython还是ctypes,上述步骤都可以帮助你生成一个可用的DLL文件。