What is the difference between 'content' and 'text'

后端 未结 2 1668
借酒劲吻你
借酒劲吻你 2020-11-29 17:45

I am using the terrific Python Requests library. I notice that the fine documentation has many examples of how to do something without explaining the why.

相关标签:
2条回答
  • 2020-11-29 18:06

    It seems clear from the documentation is that r.content

    You can also access the response body as bytes, for non-text requests:
    
     >>> r.content
    

    If you read further down the page it addresses for example an image file

    0 讨论(0)
  • 2020-11-29 18:24

    The requests.Response class documentation has more details:

    r.text is the content of the response in Unicode, and r.content is the content of the response in bytes.

    0 讨论(0)
提交回复
热议问题