如何在父目录中导入模块?
在以下包中,我想在main.py中使用techniques
模块
我在导入交易时使用__all__
来忽略测试。
trade/
__init__.py
htmlparser.py
utils.py
techniques.py
tests/
testdata.json
main.py
。__ INIT __ PY:
__all__ = ["techniques", "utils", "htmlparser"]