Fork me on GitHub

[Python]爬虫v0.1

#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编辑  收藏  举报