Python请求-如何保存用请求抓取的gif?

时间:2018-12-26 22:53:06

标签: python python-requests

此刻,我有以下代码:

with open("location.gif", "wb") as f:
    f.write(requests.get(url).content)

这将创建“ location.gif”文件,但是打开该文件不会显示任何图像,并且在尝试将其发送给某人时会告诉我这不是有效文件。我应该如何保存gif?

0 个答案:

没有答案