Python uses Requests to process cookies, set, obtain, delete cookies, and other operations
To use Requests to process cookies in Python, you need to first install the Requests library. You can install Requests using the following command:
pip install requests
Next, we will implement a complete example to demonstrate how to use Requests to process cookies.
python
import requests
#Set Cookies
def set_cookie():
url = "https://example.com/login"
data = {
"username": "testuser",
"password": "testpass"
}
response = requests.post(url, data=data)
if response.status_code == 200:
Print ("Cookie set successfully")
else:
Print ("Cookie setting failed")
#Get Cookies
def get_cookie():
url = "https://example.com/profile"
response = requests.get(url)
if response.status_code == 200:
cookie = response.cookies.get('cookie_name')
Print ("Cookie obtained:", cookie)
else:
Print ("Failed to obtain cookie")
#Delete Cookie
def delete_cookie():
url = "https://example.com/logout"
response = requests.get(url)
if response.status_code == 200:
Print ("Cookie deleted successfully")
else:
Print ("Cookie deletion failed")
#Main function
def main():
set_cookie()
get_cookie()
delete_cookie()
if __name__ == "__main__":
main()
In the above code, we first defined three functions to set cookies, obtain cookies, and delete cookies. Set_ The cookie function sets the cookie by sending the username and password to the login page through a POST request. Get_ The cookie function obtains a cookie through a GET request. Delete_ The cookie function deletes cookies through a GET request.
In the main function, we call these three functions in order to test the functionality of setting, obtaining, and deleting cookies.
Summary: Using Requests to process cookies is very simple, just use the cookies properties provided by the requests library to set, retrieve, and delete operations.