[Django]-What is diffrent between WSGIRequest and django HttpRequest?

5👍

Not an awful lot.

One is a base class for all HTTP requests, one is specific for the WSGI protocol that application servers use to talk with Django, and it derives from HttpRequest.

👤AKX

Leave a comment