我知道如何使用cythonize -o mymodule.c mymodule.py
或使用cython
命令从Python制作C代码。生成的C文件必须使用gcc或任何其他C编译器编译成Python扩展,我也能够做到这一点。如果我想让它非常简单,我只使用distutils
/setuptools
和python setup.py build_ext
。
但我不能弄清楚的是如何使扩展文件(pyd/so)与不同的名称比源文件。我不能简单地重命名文件,因为在扩展中必须有一个函数PyInit_modulename
,我不能将modulename.pyd
更改为_modulename.pyd
,这将需要PyInit__modulename
并抛出此异常:
ImportError: dynamic module does not define init function (PyInit__modulename)
基本上应该是这样的:
mymodule.py -> _mymodule.pyd
这避免了例如,如果我有两个同名但结尾不同的文件(py/pyd/pyc/pyo/so/dll),则导入混淆:
mydir/
mymodule.py
mymodule.pyd
代码:from mymodule import func
func()
# Is this now from the extension or from the python code?
# And how to access tho other one?
我需要的是:
mydir/
mymodule.py
_mymodule.pyd <- Note the underscore!
代码:import mymodule as script
script.func()
# Run the code from the python file
import _mymodule as extension
extension.func()
# Run code from the extension
但是我到底怎么才能这样编译呢?
提前感谢!
我有一个想法:我想我需要从某处开始用cython生成C代码
在你的setup.py
try:
from setuptools import setup
from setuptools import Extension
except ImportError:
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
import numpy as np # if it requires numpy
ext_modules = [Extension("desired_name",["original_name.pyx"])]
setup(
name= 'Generic model class',
cmdclass = {'build_ext': build_ext},
include_dirs = [np.get_include()], # only if it requires numpy
ext_modules = ext_modules)