标签:style blog http color os 问题 div html
import urllib import re def getHtml(url): page=urllib.urlopen(url) html=page.read() return html html= getHtml("http://tieba.baidu.com/p/2460150866") print ‘Size is:‘,len(html) f=file(‘a.html‘,‘w‘) f.write(html) f.close()
Python的urllib模块还是很好用的,顺便把抓到的网页内容写到a.html里,然后模式匹配各个html标签,想得到什么都不是问题啦~~~
标签:style blog http color os 问题 div html
原文地址:http://www.cnblogs.com/liumumu2014/p/3905180.html