python用爬虫爬取一张图片
Posted linguosen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python用爬虫爬取一张图片相关的知识,希望对你有一定的参考价值。
代码:
import requests
response = requests.get(‘https://s1.hdslb.com/bfs/static/jinkela/video/asserts/33.png‘)
with open(‘C:\\Users\\lingu\\Desktop\\1.png‘, ‘wb‘) as f:
f.write(response.content)
f.close()
前提是先用pip install requests命令安装requests库
以上是关于python用爬虫爬取一张图片的主要内容,如果未能解决你的问题,请参考以下文章