首頁  >  文章  >  後端開發  >  如何有效率地導入Python資料夾中的所有模組?

如何有效率地導入Python資料夾中的所有模組?

Barbara Streisand
Barbara Streisand原創
2024-11-26 19:36:10370瀏覽

How Can I Efficiently Import All Modules from a Python Folder?

載入資料夾內的所有模組

管理在目錄中組織的模組時,有必要高效、便捷地匯入它們。此問題探討了一個場景,其中資料夾 (/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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn