如何让 cimport 在 Cython 中工作?
我的目录结构如下:
/my_module
init.py
A/
__init__.py
a.pyx
B/
__init__.py
b.pyx
在 b.pyx 中,我想从 Aa 导入函数 常规的 python 导入可以工作,但 cimport 总是失败。
另外,我分别编译 A/ 和 B/,因为我不知道如何将 setup.py 放在顶部模块中。
有人可以帮忙吗?
I have a directory structure as so:
/my_module
init.py
A/
__init__.py
a.pyx
B/
__init__.py
b.pyx
In b.pyx I want to cimport functions from A.a.
A regular python import works, but a cimport always fails.
Also, I'm compiling A/ and B/ separately because I couldn't figure out how to put a setup.py in the top module.
Can anyone help here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须创建一个 cython 声明文件,一个 .pxd
它应仅包含您要导入的类和函数的声明。
You have to create a cython declaration file, a .pxd
It shall contain only declarations of classes and functions that you want to import.