Requests 简明教程
Requests - Working with Cookies
This chapter will discuss how to deal with cookies. You can get the cookies as well as send your cookies while calling the URL using the requests library.
当 url https://jsonplaceholder.typicode.com/users 在浏览器中点击时,我们可以获得以下所示的 Cookie 的详细信息:
您可以按以下方式读取 Cookie:
Example
import requests
getdata = requests.get('https://jsonplaceholder.typicode.com/users')
print(getdata.cookies["__cfduid"])
Output
E:\prequests>python makeRequest.py
d1733467caa1e3431fb7f768fa79ed3741575094848
You can also send cookies when we make a request.