自学Python爬虫

自学Python爬虫 本文主要用做学习python爬虫的记录。html 最简单的页面采集 #coding:utf-8 import urllib2 #导入urllib2模块 html = urllib2.urlopen('http://www.baidu.com').read() print html 也能够写做 #coding:utf-8 import urllib2 url = urllib2
相关文章
相关标签/搜索