使用requests库爬取图片
时间: 2024-06-04 11:13:48 浏览: 71
使用requests爬取百度图片并显示
以下是一个简单的示例,使用requests库从网站上下载图片:
```python
import requests
# URL of the image to be downloaded
url = "https://www.example.com/image.jpg"
# Send a GET request to the URL
response = requests.get(url)
# Open a file to write the image data to
with open("image.jpg", "wb") as f:
f.write(response.content)
print("Image downloaded!")
```
在上面的代码中,我们首先指定要下载的图片的URL,然后使用requests库发送一个GET请求来获取图片数据。接下来,我们将图片数据写入一个文件中,以便保存到本地文件系统中。最后,我们打印一条消息来确认图片已成功下载。
阅读全文