这可能已经在某处得到了答案,但我的搜索都很糟糕。酌情嘲笑我...
我有一组名为Framework的自定义模块:
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
。我做错了什么?