用python从网络上爬取至少10幅图片的代码
时间: 2024-05-09 22:21:46 浏览: 67
简单实现Python爬取网络图片
5星 · 资源好评率100%
不问题,我能够回答你的问题。以下是用Python从网络上爬取至少10幅图片的代码示例:
```python
import requests
from bs4 import BeautifulSoup
import os
url = "https://www.example.com"
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
img_tags = soup.find_all('img')
urls = [img['src'] for img in img_tags]
for url in urls[:10]:
response = requests.get(url)
img_name = os.path.basename(url)
with open(img_name, 'wb') as f:
f.write(response.content)
print(f"Downloaded {img_name}")
```
这段代码首先使用requests库从指定URL上获取网页的HTML信息,然后使用BeautifulSoup库从HTML中筛选出所有图片的SRC地址,然后使用循环依次下载前10张图片,并将其保存至脚本所在的目录中。
阅读全文