gpt4 book ai didi

python - 如何在python中从url获取文件?

转载 作者:行者123 更新时间:2023-12-02 18:04:29 24 4
gpt4 key购买 nike

我想使用 python 下载文本文件,我该怎么做?

我使用了 requests 模块的 urlopen(url).read() 但它给了我文件的字节表示。

最佳答案

对我来说,我必须执行以下操作(Python 3):

from urllib.request import urlopen

data = urlopen("[your url goes here]").read().decode('utf-8')

# Do what you need to do with the data.

关于python - 如何在python中从url获取文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73598825/

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