阅读标题和Cookie

时间:2014-05-24 07:22:47

标签: python beautifulsoup

无论如何都要在requests中读取请求/响应标头?我必须阅读一个页面,在访问时设置cookie。我需要阅读该值

1 个答案:

答案 0 :(得分:1)

不,BeautifulSoup用于处理HTML,而不是整个响应。

如果您需要处理标题,请参阅Requests

=== UPD ===

好吧,首先你需要知道cookie只是标题中的一个字段。

要处理请求中的标头,请参阅http://docs.python-requests.org/en/latest/user/quickstart/#custom-headers

处理标题作为回应,请参阅http://docs.python-requests.org/en/latest/user/quickstart/#response-headers

请求还提供了Cookie的解析对象,请参阅http://docs.python-requests.org/en/latest/user/quickstart/#cookies