代码 Python爬虫 爬取百度网照片
时间: 2023-07-02 19:03:30 浏览: 121
Python百度图片爬取器
5星 · 资源好评率100%
爬取百度网的照片需要用到爬虫技术和Python的相关库。以下是一个简单的爬虫程序示例,可以爬取百度图片的搜索结果中的前10张图片并保存到本地:
```python
import requests
import re
# 定义要爬取的关键词和数量
keyword = '猫'
num = 10
# 定义请求头
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3'}
# 构造请求URL
url = 'https://image.baidu.com/search/acjson'
params = {'tn': 'resultjson_com', 'ipn': 'rj', 'ct': 201326592, 'is': '', 'fp': 'result', 'queryWord': keyword,
'cl': 2, 'lm': -1, 'ie': 'utf-8', 'oe': 'utf-8', 'adpicid': '', 'st': -1, 'z': '', 'ic': 0, 'word': keyword,
's': '', 'se': '', 'tab': '', 'width': '', 'height': '', 'face': 0, 'istype': 2, 'qc': '', 'nc': 1,
'fr': '', 'expermode': '', 'force': '', 'pn': 0, 'rn': num, 'gsm': '1e'}
# 发送HTTP请求并解析响应信息
response = requests.get(url, params=params, headers=headers)
data = response.json().get('data')
# 遍历解析出的图片信息并下载
for item in data:
if item.get('thumbURL') is not None:
thumb_url = item.get('thumbURL')
pic_url = re.sub(r'thumb', 'large', thumb_url)
response = requests.get(pic_url, headers=headers)
with open(keyword + '.jpg', 'ab') as f:
f.write(response.content)
print('下载完成!')
```
在程序中,我们首先定义了要爬取的关键词和数量,然后构造了请求URL,发送HTTP请求并解析响应信息。最后遍历解析出的图片信息并下载到本地。需要注意的是,在下载图片时需要将缩略图URL替换为大图URL,并且使用二进制写入方式将图片内容写入文件。
阅读全文