x = requests.post(url, data=data)print x.cookiesI used the requests library to get some cookies from a website, but I can only get the cookiesfrom the Response, how to get the cookies from the Request? Thanks!
x = requests.post(url, data=data)print x.cookiesI used the requests library to get some cookies from a website, but I can only get the cookiesfrom the Response, how to get the cookies from the Request? Thanks!