Where can i get technical information on how the internals of Django works?

django, python

Solution

Easiest way to understand the internals of django, is by reading a book specifically written for that.

Read Pro Django. It provides you a good in depth understanding of the meta programming first and demonstrates how it is used in django models, to create them dynamically.

It deals similarly with many other python concepts and how django uses it.

Problem

Where can i get the technical manuals/details of how django internals work, i.e. i would like to know when a request comes in from a client; - which django function receives it? - what middleware get called? - how is the request object created? and what class/function creates it? - What function maps the request to the necessary view? - How does your code/view get called ? etc... Paul.G

Original source