The python django.http.HttpRequest is a class that represents a user's HTTP request. It contains information about the request such as the request method (GET, POST, etc.), the headers, the body, the session, and the user making the request. It provides methods and attributes to access and modify these aspects of the request. The HttpRequest object is created by Django when a user makes a request to a view and is passed as an argument to the view function.
Python HttpRequest - 31 examples found. These are the top rated real world Python examples of django.http.HttpRequest extracted from open source projects. You can rate examples to help us improve the quality of examples.