用python写一个爬取图片的爬虫
时间: 2023-03-22 09:02:35 浏览: 57
Python 图片爬虫
很高兴为您解答!爬取图片的爬虫可以使用Python语言编写,可以通过调用urllib库中的urlretrieve()函数来获取图片,可以参考以下代码:
import urllib.request
url = 'http://example.com/image.png'
urllib.request.urlretrieve(url, 'image.png')
阅读全文