这可能已经在 SO 的某个地方得到了回答,但我的搜索都不好。适当的嘲笑我...
我有一组称为框架的自定义模块:
Framework/
some_module/
__init__.py
module.py
some_other_module/
__init__.py
...
Framework
在我的 PYTHONPATH 中。 some_module/__init__.py
好像:
from module import ClassOne
from module import some_function
我希望能够from some_module import ClassOne
在我的代码中做。我究竟做错了什么?