gpt4 book ai didi

python - 从外部 url 导入 python 模块

转载 作者:太空宇宙 更新时间:2023-11-03 17:27:35 25 4
gpt4 key购买 nike

我正在构建一个Python脚本,用于根据某些标准处理json数据。此外,我还构建了一个自定义模块,其中包含用于检索 json 数据和生成由处理后的数据组成的 json 文件的方法。但是该模块文件存储在 S3 存储桶中,并且我需要将该模块导入到我的脚本中,以便我可以调用模块中定义的函数。

请建议我有关从外部 URL 导入 python 模块的适当解决方案

最佳答案

好吧,如果在线模块全部在一个文件中,您可以使用 urllib2 下载该文件,然后导入它:

from urllib2 import urlopen
r = urlopen('http://urlHere/fileHere')
f = open('filenameToWrite', 'w')
f.write(r.read())
f.close()
import filenameWithout.PyInIt

关于python - 从外部 url 导入 python 模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32352187/

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