5 Star 8 Fork 6

合肥吃货食光/Python有趣的代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
爬百度关键字图片.py 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
合肥吃货食光 提交于 2019-07-22 21:15 . Python爬百度关键字图片
#coding:utf-8
import re
import requests
import os
def dowmloadPic(html, keyword):
pic_url = re.findall('"objURL":"(.*?)",', html, re.S)
i = 1
print('找到关键词:' + keyword + '的图片,开始下载图片...')
for imageUrl in pic_url:
print('正在下载第' + str(i) + '张图片,图片地址:' + str(imageUrl))
try:
pic = requests.get(imageUrl, timeout=100)
except requests.exceptions.ConnectionError:
print('当前图片下载失败')
continue
dir = './images/' + keyword + '_' + str(i) + '.jpg'
fp = open(dir, 'wb')
fp.write(pic.content)
fp.close()
i += 1
if __name__ == '__main__':
word = input("请输入你要搜索的图片: ")
url = 'http://image.baidu.com/search/flip?tn=baiduimage&ie=utf-8&word=' + word + '&ct=201326592&v=flip'
print(url)
result = requests.get(url)
dirs = './images/'
if not os.path.exists(dirs):
os.makedirs(dirs)
dowmloadPic(result.text, word)
input()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/simon4055/fun.git
git@gitee.com:simon4055/fun.git
simon4055
fun
Python有趣的代码
master

搜索帮助