首页 > 编程语言 > 详细

[python]爬虫学习(二)

时间:2016-11-12 22:27:45      阅读:253      评论:0      收藏:0      [点我收藏+]

---恢复内容开始---

#python2

import urllib2

#python3

import urllib.request

html=urllib.request.urlopen(‘http://www.sogou.com‘)
print (html)

#<http.client.HTTPResponse object at 0x0000000002D84BA8
print (html.read())

 

urllib.request,

urllib.error,

urllib.parse,

urllib.robotparser四个子模块,

介绍urllib.request的简单用法.首先是urlopen函数,用于打开一个URL

  • info():返回一个对象,表示远程服务器返回的头信息。
  • getcode():返回Http状态码,如果是http请求,200表示请求成功完成;404表示网址未找到。
  • geturl():返回请求的url地址。

[python]爬虫学习(二)

原文:http://www.cnblogs.com/lfqcode/p/6057411.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!