11 2016 档案

摘要:恢复内容开始 #python2 import urllib2 #python3 import urllib.request html=urllib.request.urlopen('http://www.sogou.com')print (html) #<http.client.HTTPRespon 阅读全文
posted @ 2016-11-12 19:47 高中国流 阅读(187) 评论(0) 推荐(0)
摘要:要学习Python爬虫,我们要学习的共有以下几点(python2): Python基础知识 Python中urllib和urllib2库的用法 Python正则表达式 Python爬虫框架Scrapy Python爬虫更高级的功能(beautifulsoup) 网络爬虫的基本操作是抓取网页。 我们先 阅读全文
posted @ 2016-11-09 20:27 高中国流 阅读(369) 评论(0) 推荐(0)