使用python爬虫下载图片
时间: 2023-10-18 21:05:46 浏览: 96
爬虫_python_一款某网站上面所有的写真图片的程序
你可以使用Python的requests和beautifulsoup库来爬取图片。以下是一个简单的例子:
```python
import requests
from bs4 import BeautifulSoup
# 要爬取图片的网页
url = 'https://www.example.com/images/'
# 发送请求获取页面内容
response = requests.get(url)
html = response.content
# 使用BeautifulSoup解析页面
soup = BeautifulSoup(html, 'html.parser')
images = soup.find_all('img')
# 遍历所有图片标签,获取图片链接并下载
for img in images:
img_url = img['src']
img_name = img_url.split('/')[-1]
with open(img_name, 'wb') as f:
f.write(requests.get(img_url).content)
```
以上代码会遍历指定网页中的所有图片标签,并将其下载到当前目录下。你可以根据实际需求修改代码。
阅读全文