response.elapsed – Python requests Read Courses Practice Improve Improve Improve Like Article Like Save Article Save Report issue Report Python requests are generally used to fetch the content from a particular resource URI. Whenever we make a request to a specified URI through Python, it returns a response object. Now, this response object would be used to access certain features such as content, headers, etc. This article revolves around how to check the response.elapsed out of a response object. response.elapsed returns a timedelta object with the time elapsed from sending the request to the arrival of the response. It is often used to stop the connection after a certain point of time is “elapsed”. How to use response.elapsed using Python requests? To illustrate use of response.elapsed, let’s ping API of Github. To run this script, you need to have Python and requests installed on your PC. Prerequisites – Download and Install Python 3 Latest Version How to install requests in Python – For windows, linux, mac Example code – response.elapsed # import requests module import requests # Making a get request response = requests.get('https://api.github.com') # print response print(response) # print elapsed time print(response.elapsed) Example Implementation – Save above file as request.py and run using Python request.py Output – Check that 0:00:00.347420 at the start of output, it shows the elapsed time since the request is made. Advanced Concepts There are many libraries to make an HTTP request in Python, which are httplib, urllib, httplib2, treq, etc., but requests is the one of the best with cool features. If any attribute of requests shows NULL, check the status code using below attribute. requests.status_code If status_code doesn’t lie in range of 200-29. You probably need to check method begin used for making a request + the url you are requesting for resources. Last Updated : 01 Mar, 2020 Like Article Save Article Previous response.encoding - Python requests Next response.close() - Python requests Share your thoughts in the comments Add Your Comment Please Login to comment... Similar Reads GET and POST Requests in GraphQL API using Python requests response.headers - Python requests response.encoding - Python requests response.close() - Python requests response.content - Python requests response.cookies - Python requests response.history - Python requests response.is_permanent_redirect - Python requests response.is_redirect - Python requests response.iter_content() - Python requests Like N NaveenArora Follow Article Tags : Python-requests Python Practice Tags : python Additional Information Current difficulty : Basic Vote for difficulty : Easy Normal Medium Hard Expert