python爬取图片程序
时间: 2023-10-16 18:09:59 浏览: 231
你可以使用Python的requests库和BeautifulSoup库来编写一个简单的图片爬取程序。以下是一个示例:
```python
import requests
from bs4 import BeautifulSoup
import os
# 创建保存图片的文件夹
save_folder = 'images'
if not os.path.exists(save_folder):
os.makedirs(save_folder)
# 要爬取图片的网页链接
url = 'https://example.com'
# 发起请求并获取网页内容
response = requests.get(url)
html = response.text
# 使用BeautifulSoup解析网页内容
soup = BeautifulSoup(html, 'html.parser')
# 找到所有的图片标签
img_tags = soup.find_all('img')
# 遍历图片标签,下载图片并保存到本地
for img_tag in img_tags:
# 获取图片链接
img_url = img_tag['src']
# 发起请求并获取图片内容
img_response = requests.get(img_url)
# 生成图片保存路径
img_name = img_url.split('/')[-1]
save_path = os.path.join(save_folder, img_name)
# 保存图片到本地
with open(save_path, 'wb') as f:
f.write(img_response.content)
print(f"已保存图片:{save_path}")
```
请注意,上述代码中的`url`变量是要爬取图片的网页链接,你需要将其替换为你要爬取的实际网页链接。另外,代码中会创建一个名为`images`的文件夹来保存下载的图片,你可以根据需要修改保存路径。
在运行代码之前,请确保你已经安装了所需的依赖库(requests和BeautifulSoup),你可以使用`pip install requests`和`pip install beautifulsoup4`命令来安装它们。
阅读全文