所以我得到了一个我正在使用的Python模块,module_a
,另一个我想在第一个模块中使用的Python模块,module_b
。
由于两者都有完全不同的任务,并且module_b
可以(并将被)独立使用,所以我当前的结构如下:
projects/
├── some_other_git_repo
├── some_other_git_repo
├── module_a
│ ├── __init__.py
│ ├── main.py
└── module_b
├── __init__.py
└── main.py
有了这样的结构,module_b
仍在进行中(尚无法在sys.modules
使用,我将如何在module_b
中引用module_a
中的代码?