无论如何都要在requests
中读取请求/响应标头?我必须阅读一个页面,在访问时设置cookie。我需要阅读该值
答案 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