Session Objects – Python requests
Session object allows one to persist certain parameters across requests. It also persists cookies across all requests made from the Session instance and will use urllib3’s connection pooling. So if several requests are being made to the same host, the underlying TCP connection will be reused, which can result in a significant performance increase. A session object all the methods as of requests.
Using Session Objects
Let us illustrate use of session objects by setting a cookie to a url and then making a request again to check if cookie is set.
# import requests moduleimport requests # create a session objects = requests.Session() # make a get request # again make a get request # check if cookie is still setprint(r.text) |
Output
One can check that cookie was still set when the request was made again.
Sessions can also be used to provide default data to the request methods. This is done by providing data to the properties on a Session object:
# import requests moduleimport requests # create a session objects = requests.Session() # set username and passwords.auth = ('user', 'pass') # update headerss.headers.update({'x-test': 'true'}) # both 'x-test' and 'x-test2' are sent # print objectprint(s) |
Output


