时间:2021-05-22
复制代码 代码如下:
# -*- coding:utf-8 -*-
import httplib
import urllib
import string
import re
def getContent(): #从网站中获取所有内容
conn = httplib.HTTPConnection("tu.duowan.com")
conn.request("GET", "/m/meinv/index.html")
r = conn.getresponse()
print r.status, r.reason
data1 = r.read()#.decode('utf-8') #编码根据实际情况酌情处理
return data1
def getImageUrl(data): #将获取到img链接写到sour.txt文件中国
sour = open("test\\sour.txt", 'w')
pplen = len("http://s1.dwstatic.com/group1/M00/37/2A/e2c30e89184ea942a4be9c1f7ba217a5.jpg")
for i in range(len(data) - 3):
if data[i] == 'i' and data[i + 1] == 'm' and data[i + 2] == 'g':
for j in xrange(i + 9, i + 9 + pplen):
sour.write(data[j])
sour.write('\n')
sour.close()
def downImage(): #根据test\\sour.txt里面的url自动下载图片
tt = 0 #name
sour = open('test\\sour.txt')
while 1:
line = sour.readline()
if line:
Len = len(line)
#print Len
if line[Len - 2] == 'g' and line[Len - 3] == 'p' and line[Len - 4] == 'j':
path = line
data = urllib.urlopen(line).read()
f = open('test\\' + str(tt) + '.jpg', 'wb')
f.write(data)
f.close()
tt = tt + 1
else:
break
sour.close()
content = getContent()
getImageUrl(content)
downImage()
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文所述实例可以实现基于Python的查看图片报纸《参考消息》并将当天的图片报纸自动下载到本地供查看的功能,具体实现代码如下:#coding=gbkimport
python创建弹出式菜单的实现代码实现效果图:Python代码importwin32uiimportwin32apifromwin32conimport*fr
先给大家展示效果图:实现代码也很简单,代码如下所示:privatevoidshowLabelAlert(){newAlertDialog.Builder(上下文
python获取网页编码方式实现代码python开发,自动化获取网页编码方式用到了chardet库,字符集检测,这个类在python2.7中没有,需要在官网上下
今天来讲讲如何使用Python绘图工具,Plotly来绘制气泡图。气泡图的实现方法类似散点图的实现。修改散点图中点的大小,就变成气泡图。实现代码如下:impor