百度图片小爬虫

Posted pmgd

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了百度图片小爬虫相关的知识,希望对你有一定的参考价值。

         刚学习爬虫,写了一个百度图片爬虫当作练习。

        环境:python3.6(请下好第三方库requests)

         实现的功能:输入关键字,下载240张关键字有关的百度图片到本地的d:\百度图片\关键字\文件夹中。

        百度图片的加载是ajax异步形式的,除了前面的一部分图片,后面靠下拉加载的图片都是异步从服务器端请求得到的。这些异步加载的图片的信息可以在一个个acjson的百度图片接口中,可以在开发者工具中xhr下找到这些文件。

        接下来上代码:

         

import requests
import re
import os


def get_page_url(url, param):
response = requests.get(url, params=param)
response.encoding = ‘utf-8‘
return response.text


def parse_page(str):
pattern = re.compile(‘"middleURL":"(.*?)",‘)#利用正则匹配图片url
url_list = re.findall(pattern, str)
return url_list


def run(keyword, path):
url = "https://image.baidu.com/search/acjson"
i = 0
for j in range(30, 270, 30):
params = {"ipn": "rj", "tn": "resultjson_com", "word": keyword, "pn": str(j)}
html = get_page_url(url, params)
lists = parse_page(html)
print(lists)
for item in lists:
try:
img_data = requests.get(item, timeout=10).content
with open(path + "/" + str(i) + ".jpg", "wb") as f:
f.write(img_data)
f.close()
i = i+1
except requests.exceptions.ConnectionError:
print(‘can not download‘)
continue


def make_dir(keyword):
path = "D:/百度图片/"
path = path+keyword
is_exists = os.path.exists(path)
if not is_exists:
os.makedirs(path)
return path
else:
print(path + ‘目录已存在‘)
return path


def main():
keyword = input("input keyword about images you want to download: ")
path = make_dir(keyword)
run(keyword, path)


if __name__ == ‘__main__‘:
main()

以上是关于百度图片小爬虫的主要内容,如果未能解决你的问题,请参考以下文章

小爬虫学习——使用 requests 爬取百度图片

爬虫爬取百度搜狗图片持久化存储

百度图片爬虫

爬虫下载百度贴吧图片

python爬虫爬取百度图片

当爬虫遇到PyQt5:GUI界面实现百度图片爬取