gpt4 book ai didi

python - 从同名的 Python 模块导入函数/类

转载 作者:太空狗 更新时间:2023-10-29 23:56:15 26 4
gpt4 key购买 nike

我有一个 Python 包 mymodule 和一个子包 utils(即包含每个模块都有一个函数的子目录)。这些函数与它们所在的文件/模块同名。

我希望能够访问以下功能,

从 mymodule.utils 导入 a_function

奇怪的是,有时我可以使用上述符号导入函数,但有时我不能。我一直无法弄清楚为什么(例如,最近,我重命名了一个函数和它所在的文件,并在 utils.__init__.py 文件中反射(reflect)了这个重命名,但它不再导入作为我的一个脚本中的函数(而不是模块)。

utils.__init__.py 是这样的,

__all__ = ['a_function', 'b_function' ...]
from a_function import a_function
from b_function import b_function
...

mymodule.__init__.py 没有引用 utils

想法?

最佳答案

您的 utils 函数是否需要导入其他 utils 函数? (或导入其他导入其他实用程序功能的模块)。例如,假设 a_function.py 包含包含“from mymodule.utils import b_function”。这是你的 utils.py 和一堆额外的注释:

# interpreter is executing utils.py
# Right now, utils.a_function and utils.b_function are modules

# The following line executes the a_function module,
# then rebinds a_function to a_function.a_function
from a_function import a_function

# The following line executes the b_function module,
# then rebinds b_function to b_function.b_function
from b_function import b_function

当 utils.py 首次导入 a_function 模块时,utils.b_function 是模块而不是函数。任何在执行最后一行之前声明“from mymodule.utils import b_function”的模块最终都会引用 b_function 模块而不是 b_function 函数。

一般来说,我发现from somemodule import something 惯用法对于任何大型项目都充满了危险。它非常适合短脚本,但一旦您开始引入循环导入依赖项,您就会遇到问题,需要小心使用它的位置。

作为安全和节省输入之间的折衷,我会使用 from mymodule import utils 然后调用 utils.a_function()。这样,您将始终立即将对象绑定(bind)到 utils.a_function,而不是在导入期间碰巧绑定(bind)到 utils.a_function 的对象.

关于python - 从同名的 Python 模块导入函数/类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2519511/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com