摘要:
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 阅读全文