python 读取http图片
时间: 2023-08-26 21:13:59 浏览: 79
ser_python_
你可以使用Python中的Requests库来读取HTTP图片。以下是一个简单的示例代码:
```python
import requests
url = 'http://example.com/image.jpg'
response = requests.get(url)
with open('image.jpg', 'wb') as f:
f.write(response.content)
```
这个代码会从指定的URL下载图片,并将其保存在本地文件系统中,文件名为`image.jpg`。你可以根据需要修改文件名和保存路径。
阅读全文