我有一个C代码,它调用一个名为SetFlags的Fortran子程序。我想将这个C代码转换为python模块。它创建一个.so文件,但我无法将此模块导入python。我不确定我的错误是使用distutils创建模块还是链接到fortran库。 这是我的setflagsmodule.c文件
#include <Python/Python.h>
#include "/Users/person/program/x86_64-Darwin/include/Cheader.h"
#include <stdlib.h>
#include <stdio.h>
static char module_docstring[] =
"This module provides an interface for Setting Flags in C";
static char setflags_docstring[] =
"Set the Flags for program";
static PyObject * setflags(PyObject *self, PyObject *args)
{
int *error;
const int mssmpart;
const int fieldren;
const int tanbren;
const int higgsmix;
const int p2approx;
const int looplevel;
const int runningMT;
const int botResum;
const int tlcplxApprox;
if (!PyArg_ParseTuple(args, "iiiiiiiiii", &error,&mssmpart,&fieldren,&tanbren,&higgsmix,&p2approx,&looplevel,&runningMT,&botResum,&tlcplxApprox))
return NULL;
FSetFlags(error,mssmpart,fieldren,tanbren,higgsmix,p2approx,looplevel,runningMT,botResum,tlcplxApprox); //Call fortran subroutine
return Py_None;
}
static PyMethodDef setflags_method[] = {
{"FSetFlags", setflags, METH_VARARGS, setflags_docstring},
{NULL,NULL,0,NULL}
};
PyMODINIT_FUNC init_setflags(void)
{
PyObject *m;
m = Py_InitModule3("setflags", setflags_method, module_docstring);
if (m == NULL)
return;
}
这是我的设置文件setflags.py:
from distutils.core import setup, Extension
setup(
ext_modules=[Extension("setflags",["setflagsmodule.c"], include_dirs=['/Users/person/program/x86_64-Darwin'],
library_dirs=['/Users/person/program/x86_64-Darwin/lib/'], libraries=['FH'])],
)
我使用以下方法构建模块:
python setflags.py build_ext --inplace
当我尝试将模块导入python时,结果如下:
>>> import setflags
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: dynamic module does not define init function (initsetflags)
有没有人建议如何解决这个ImportError?
非常感谢任何帮助,并提前感谢您的时间。
答案 0 :(得分:3)
问题很简单,但容易错过。
注意你得到的错误:
ImportError: dynamic module does not define init function (initsetflags)
现在看看你的代码:
PyMODINIT_FUNC init_setflags(void)
您已定义init_setflags
而不是initsetflags
。只需删除额外的下划线,它就可以工作。
来自The Module's Method Table and Initialization Function的文档:
初始化函数必须命名为
initname()
,其中name
是模块的名称...
您经常在示例中看到名为init
的{{1}}函数的原因是它们通常会初始化模块init_foo
,然后由纯Python模块包装_foo.so
。