A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/python/response-request-python-requests/ below:

response.request - Python requests - GeeksforGeeks

response.request - Python requests

Last Updated : 12 Jul, 2025

response.request

returns the request object that requested this response. 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.request

out of a response object.

How to use response.request using Python requests?

To illustrate use of response.request, let's ping api.github.com. To run this script, you need to have Python and requests installed on your PC.

Prerequisites - Example code - Python3
# import requests module
import requests

# Making a get request
response = requests.get('https://api.github.com/')

# print response
print(response)

# print request object
print(response.request)
Example Implementation -

Save above file as

request.py

and run using

Python request.py
Output -

Check that

and

in the output which refer to HttpResponse and HttpRequest objects respectively.

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.



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4