載入資料夾內的所有模組
管理在目錄中組織的模組時,有必要高效、便捷地匯入它們。此問題探討了一個場景,其中資料夾 (/Foo) 包含 Python 腳本,但使用 __init__.py 檔案將其轉換為套件並使用 from Foo import * 導入它會產生不令人滿意的結果。
為了解決這個問題,提出了全面的解決方案,自動識別指定資料夾中的所有Python 模組(.py 檔案)並使它們可供導入:
from os.path import dirname, basename, isfile, join import glob # List all Python (.py) files in the current folder modules = glob.glob(join(dirname(__file__), "*.py")) # Extract the module names without the file extension __all__ = [basename(f)[:-3] for f in modules if isfile(f) and not f.endswith('__init__.py')]
透過將此程式碼新增至透過資料夾中的__init__.py 文件,該目錄中的所有模組都可以匯入,從而可以更簡化地導入模組。
以上是如何有效率地導入Python資料夾中的所有模組?的詳細內容。更多資訊請關注PHP中文網其他相關文章!