python爬虫爬取图片代码
时间: 2023-09-05 21:07:05 浏览: 114
Python爬虫项目之爬取校花图片.zip
以下是一个简单的 Python 爬虫爬取图片的示例代码:
```python
import requests
import os
url = 'https://www.example.com/image.jpg' # 图片 URL
path = './images' # 存储路径
if not os.path.exists(path):
os.makedirs(path)
response = requests.get(url)
if response.status_code == 200:
with open(path + '/image.jpg', 'wb') as f:
f.write(response.content)
print('图片保存成功!')
else:
print('图片下载失败')
```
以上代码使用 requests 库下载图片并将其保存到指定路径。你可以使用该代码为自己的项目编写图片爬虫。
阅读全文