通过这种方式从包中导入模块时,是否可以在PyCharm中自动完成?
from sound import *
effects. <- no autocomplete from the file effects.py
在包目录的根目录中,我有__init__.py
,其中定义了一个名为__all__ = ["effects"]
的列表
有关以下内容的更多信息:https://docs.python.org/3/tutorial/modules.html#importing-from-a-package
P.S。:如果将包目录标记为Sources Root,它也不起作用。