python爬虫爬取多张图片
时间: 2023-10-28 18:05:22 浏览: 147
Python爬虫项目之爬取校花图片.zip
使用Python编写爬虫程序可以很方便地爬取多张图片。可以通过以下步骤实现:
1. 导入需要的库,例如`requests`和`BeautifulSoup`。
2. 使用`requests`库发送请求获取网页源代码。
3. 使用`BeautifulSoup`库解析网页源代码,提取出图片的URL链接。
4. 遍历所有图片的URL链接,并使用`requests`库下载保存图片。
以下是一个简单的示例代码:
```python
import requests
from bs4 import BeautifulSoup
# 发送请求获取网页源代码
url = "https://example.com"
response = requests.get(url)
html = response.text
# 解析网页源代码,提取图片链接
soup = BeautifulSoup(html, "html.parser")
img_tags = soup.find_all("img")
# 下载并保存图片
for img_tag in img_tags:
img_url = img_tag["src"]
img_response = requests.get(img_url)
img_data = img_response.content
# 保存图片
with open("image.jpg", "wb") as f:
f.write(img_data)
```
阅读全文