摘要: #爬取网站中的图片 1 import re #正则表达式库 2 import urllib #url链接库 3 4 def getHtml(url): 5 page = urllib.urlopen(url) #打开链接 6 html = page.read() ... 阅读全文
posted @ 2015-10-16 14:04 清水汪汪 阅读(198) 评论(0) 推荐(0) 编辑