python爬虫图片数据
时间: 2023-12-31 15:20:57 浏览: 132
python 图片爬虫
要爬取图片数据,可以使用Python中的requests和BeautifulSoup库来实现。具体步骤如下:
1. 使用requests库发送HTTP请求,获取网页源代码。
2. 使用BeautifulSoup库解析网页源代码,提取出图片的URL。
3. 使用requests库下载图片,并保存到本地。
以下是一个简单的示例代码:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://www.example.com'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
img_tags = soup.find_all('img')
for img in img_tags:
img_url = img['src']
img_response = requests.get(img_url)
with open('image.jpg', 'wb') as f:
f.write(img_response.content)
```
阅读全文