Am try to understand the guts of django, and i cant get any good tutorial on this.
I know django views receive a HttpRequest instance as one of the arguments when they
>>> from django.http import HttpRequest >>> HttpRequest()
If you need this for testing and emulating requests, that's fine, but if you try to use this to call views from one another, it's inefficient.