使用Python下载Bing图片(代码)
程序员文章站
2022-04-28 17:05:27
...
直接上代码:
复制代码 代码如下:
# -*- coding: cp936 -*-
import urllib
import os
print 'Download data......'
url = 'http://cn.bing.com'
urlFile = urllib.urlopen(url)
data = urlFile.read()
urlFile.close()
data = data.decode('utf-8')
pre = 'g_img={url:\''
index1 = data.find(pre) + len(pre)
index2 = data.find('\'', index1)
imgUrl = data[index1 : index2]
preImg = u'h3>今日图片故事', index3) + 1
index5 = data.find('
imgName = data[index4 : index5] +u'.jpg'
if os.path.exists(imgName) == False:
print 'Download image......'
urllib.urlretrieve(imgUrl, imgName)
print 'Download complete'
os.startfile(imgName)
# -*- coding: cp936 -*-
import urllib
import os
print 'Download data......'
url = 'http://cn.bing.com'
urlFile = urllib.urlopen(url)
data = urlFile.read()
urlFile.close()
data = data.decode('utf-8')
pre = 'g_img={url:\''
index1 = data.find(pre) + len(pre)
index2 = data.find('\'', index1)
imgUrl = data[index1 : index2]
preImg = u'h3>今日图片故事', index3) + 1
index5 = data.find('
imgName = data[index4 : index5] +u'.jpg'
if os.path.exists(imgName) == False:
print 'Download image......'
urllib.urlretrieve(imgUrl, imgName)
print 'Download complete'
os.startfile(imgName)
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
相关文章
相关视频
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
推荐阅读
-
Android中使用AsyncTask做下载进度条实例代码
-
python代码 if not x: 和 if x is not None: 和 if not x is None:使用介绍
-
Python 使用SMTP发送邮件的代码小结
-
Python 使用requests模块发送GET和POST请求的实现代码
-
Android中使用HttpURLConnection实现GET POST JSON数据与下载图片
-
Android使用AsyncTask下载图片并显示进度条功能
-
Python 使用requests模块发送GET和POST请求的实现代码
-
python代码 if not x: 和 if x is not None: 和 if not x is None:使用介绍
-
Python 使用SMTP发送邮件的代码小结
-
PHP添加文字水印或图片水印的水印类完整源代码与使用示例
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论