怎样在谷歌浏览器中爬图片详解
Posted tzwx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样在谷歌浏览器中爬图片详解相关的知识,希望对你有一定的参考价值。
#!/usr/bin/env python # -*- coding:utf-8 -*- from icrawler.builtin import GoogleImageCrawler #keyword = ‘动漫美女‘ import sys import os from importlib import reload reload(sys) s = os.sep root = "E:\image" for test in os.listdir(root): if os.path.isfile(os.path.join(root,test)) and test.__eq__("test.txt"): filename = os.path.join(root,test) with open(os.path.join(root,test)) as f: while 1: keyword = f.readline().strip() if not keyword: break print("---filename---",test) google_crawler = GoogleImageCrawler( feeder_threads=1, parser_threads=2, downloader_threads=16, storage={‘root_dir‘: keyword}) google_crawler.crawl(keyword=keyword, max_num=10, file_idx_offset=0)
以上是关于怎样在谷歌浏览器中爬图片详解的主要内容,如果未能解决你的问题,请参考以下文章
提问!同一ajax请求获取的图片路劲,在谷歌浏览器能正确展示图片,在火狐浏览器则显示路径undefined