摘要: #coding=utf-8 import urllib import re def getHtml(url): page = urllib.urlopen(url) html = page.read() return html def getImg(html): reg = r'src="(.+?\ 阅读全文
posted @ 2016-05-03 16:31 任飞儿 阅读(213) 评论(0) 推荐(0) 编辑