gpt4 book ai didi

python - 使用一条语句导入多个模块

转载 作者:太空宇宙 更新时间:2023-11-04 08:00:14 26 4
gpt4 key购买 nike

我每天使用多个模块,每次我想使用它们时都导入它们非常麻烦。

我希望有这样的东西

#essentials.py
from bs4 import BeautifulSoup
import requests
etc etc

然后在其他方面,我可以做:

import essentials
r = requests.get(example) #Requests is not defined here, as I have not imported it
soup = BeautifulSoup(r, 'lxml')

最佳答案

from essentials import *

这会将 essentials.py 中的所有名称放入模块的命名空间,如果这是在模块的顶层完成的话。

所以你可以这样做

from essentials import *
r = requests.get(example)
soup = BeautifulSoup(r, 'lxml')

看看the official documentation for reference .

关于python - 使用一条语句导入多个模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41509049/

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