码迷,mamicode.com
首页 > Web开发 > 详细

urllib.request

时间:2016-08-22 22:58:18      阅读:503      评论:0      收藏:0      [点我收藏+]

标签:

urllib.request

1、urlopen结果保存在内存。

  技术分享

2、ulrretrieve结果保存到文件。

  技术分享

3、response有read方法。

  技术分享

4、可以创建Request对象。

  技术分享

5、发送Post数据,需要encode()成ascii的byte.

  技术分享

6、url中加入query

  技术分享

7、加入User-Agent参数。

  技术分享

8、错误。

  urlopen raises URLError when it cannot handle a response (though as usual with Python APIs, built-in exceptions such as ValueError, TypeError etc. may also be raised).

  HTTPError is the subclass of URLError raised in the specific case of HTTP URLs.

  The exception classes are exported from the urllib.error module.

  技术分享

9、http.server.BaseHTTPRequestHandler.responses is a useful dictionary of response codes in that shows all the response codes used by RFC 2616. The dictionary is reproduced here for convenience

  包含所有的HTTP错误码。

  技术分享

 

urllib.request

标签:

原文地址:http://www.cnblogs.com/tekkaman/p/5797141.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!