摘要: import re import urllib.request def getHtml(url): page=urllib.request.urlopen(url) html=page.read() return html def getImg(html): reg = r'src="([.*\S]*\.jpg)"' imgre=re.comp... 阅读全文
posted @ 2019-01-11 22:45 糖葫芦有点甜 阅读(778) 评论(0) 推荐(0) 编辑