有没有办法从文件中导入所有函数(使用 *)而不导入该文件?

Is there a way to import all functions(using *) from a file without the imports of that file?

我有两个 .py 文件

  1. Helper.py
  2. SomeClass.py

举个例子,两个文件都导入 sys

我想像这样导入 SomeClass.py Helper.py:from helper.py import *(因为我需要里面的所有函数)

但我不想从任何文件中删除 import sys,因为这两个文件并不是真正相辅相成的。

有没有办法导入 * 并排除 imports/from...导入另一个文件?

您可以定义 __all__ 模块。

在您的 Helper.py 文件中,添加一行

__all__ = ["foo", "bar"]  # All the objects you want to export

然后在 SomeClass.py 中使用 from helper.py import *,这只会导入在 __all__ 中指定的内容。