学以致用

focus on Python , C++, and some interest in Go and R

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2013年8月21日

摘要: python的Requests(http://docs.python-requests.org/en/latest/)库在处理http/https请求时还是比较方便的,应用也比较广泛。但其在处理response时有一些地方需要特别注意,简单来说就是Response对象的content方法和text方法的区别,具体代码如下:@property def content(self): """Content of the response, in bytes.""" if self._content is False: # Read the 阅读全文
posted @ 2013-08-21 15:21 Jerry.Kwan 阅读(5358) 评论(0) 推荐(0) 编辑