python 爬虫图片
时间: 2023-02-25 10:49:47 浏览: 104
爬虫_python_一款某网站上面所有的写真图片的程序
使用 Python 爬虫图片可以使用 Requests 和 BeautifulSoup 库,代码如下:
```
import requests
from bs4 import BeautifulSoup
# 获取图片链接
url = '网页地址'
response = requests.get(url)
soup = BeautifulSoup(response.content, 'html.parser')
img_tags = soup.find_all('img')
urls = [img['src'] for img in img_tags]
# 下载图片
for url in urls:
response = requests.get(url)
with open('图片名称.jpg', 'wb') as f:
f.write(response.content)
```
注意:请确保您在爬取图片时遵守网站的相关规则和政策。
阅读全文