Python怎么保存爬虫图片
Python 中保存爬取的图片有三种方法:使用 urllib.request 模块的 urlretrieve() 函数直接下载图片。使用 requests 库的 get() 方法下载图片并使用 open() 函数写入文件。使用第三方库(如 Beautiful Soup 或 Scrapy)获取图片 URL 后,再使用上述方法保存图片。
如何在 Python 中保存爬取的图片
方法 1:使用 urllib.request
import urllib.requesturl = 'https://example.com/image.jpg'urllib.request.urlretrieve(url, 'image.jpg')
方法 2:使用 requests
import requestsurl = 'https://example.com/image.jpg'response = requests.get(url)with open('image.jpg', 'wb') as f: f.write(response.content)
方法 3:使用第三方库
立即学习“Python免费学习笔记(深入)”;
示例(使用 Beautiful Soup):
from bs4 import BeautifulSouphtml_content = '''@@##@@'''soup = BeautifulSoup(html_content, 'html.parser')image_url = soup.find('img')['src']urllib.request.urlretrieve(image_url, 'image.jpg')