Python 2.7获取网站源代码的几种方式_20160924

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 2.7获取网站源代码的几种方式_20160924相关的知识,希望对你有一定的参考价值。

 1 #coding:utf-8
 2 import urllib2,cookielib
 3 
 4 if __name__ == __main__:
 5     root_url=https://www.baidu.com/
 6     # 第一种
 7     print "第一种"
 8     response1=urllib2.urlopen(root_url)
 9     print response1.getcode()
10     print len(response1.read())
11 
12     #第二种
13     print "第二种"
14     request=urllib2.Request(root_url)
15     response2=urllib2.urlopen(request)
16     print response2.getcode()
17     print len(response2.read())
18 
19     # 第三种
20     print "第三种"
21     cj=cookielib.CookieJar()
22     opener=urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
23     urllib2.install_opener(opener)
24     response3 = urllib2.urlopen(root_url)
25     print response3.getcode()
26     print "cookie为:"+str(cj)
27     print response3.read()

执行结果

技术分享

 

以上是关于Python 2.7获取网站源代码的几种方式_20160924的主要内容,如果未能解决你的问题,请参考以下文章

python中os模块获取路径的几种方式

[Python]调用shell cmd的几种方式

python检测挖矿特征的几种方式

python中字典的几种定义方式

Python 实现多线程的几种方式

Python 获取环境变量的几种方式