我想在一个包下收集多个 Python 模块,因此它们不会从全局 Python 包和模块集中保留太多名称。但是我对用 C 编写的模块有问题。
这是一个非常简单的示例,直接来自官方 Python 文档。您可以从此处在页面底部找到它:http: //docs.python.org/distutils/examples.html
from distutils.core import setup
from distutils.extension import Extension
setup(name='foobar',
version='1.0',
ext_modules=[Extension('foopkg.foo', ['foo.c'])],
)
我的 foo.c 文件看起来像这样
#include <Python.h>
static PyObject *
foo_bar(PyObject *self, PyObject *args);
static PyMethodDef FooMethods[] = {
{
"bar",
foo_bar,
METH_VARARGS,
""
},
{NULL, NULL, 0, NULL}
};
static PyObject *
foo_bar(PyObject *self, PyObject *args)
{
return Py_BuildValue("s", "foobar");
}
PyMODINIT_FUNC
initfoo(void)
{
(void)Py_InitModule("foo", FooMethods);
}
int
main(int argc, char *argv[])
{
// Pass argv[0] to the Python interpreter
Py_SetProgramName(argv[0]);
// Initialize the Python interpreter. Required.
Py_Initialize();
// Add a static module
initfoo();
return 0;
}
它可以正常构建和安装,但我无法导入 foopkg.foo!如果我将它重命名为“foo”,它会完美运行。
有什么想法可以让“foopkg.foo”工作吗?例如,将 C 代码中的 Py_InitModule() 中的“foo”更改为“foopkg.foo”并没有帮助。