Fork me on GitHub
摘要: #coding:utf-8import urllib#######爬虫v0.1 利用urlib2 和 字符串内建函数####### 获取网页内容def getHtml(url): page = urllib.urlopen(url) html = page.read() retur... 阅读全文
posted @ 2015-06-20 20:16 削微寒 阅读(1751) 评论(0) 推荐(0) 编辑