有人可以为我提供导入整个模块目录的好方法吗? 我有这样的结构:
/Foo bar.py spam.py eggs.py
我尝试通过添加__init__.py和执行操作将其转换为程序包,from Foo import *但它没有按我希望的方式工作。
__init__.py
from Foo import *
列出.py当前文件夹中的所有python()文件,并将它们作为__all__变量放入__init__.py
.py
python()
__all__
from os.path import dirname, basename, isfile, join import glob modules = glob.glob(join(dirname(__file__), "*.py")) __all__ = [ basename(f)[:-3] for f in modules if isfile(f) and not f.endswith('__init__.py')]