I have been looking for a Django Reference Manual to let me know what classes, or Djanago tools
are allowed in its calling syntax... Example
from django.urls import path
from MyApplication import viewsWhat I am looking for is an explanation of what things can be imported with URLS, VIEWS, HTTPThere are other classes each can use, but I have not been able to find any source or bookthat outlines all the classes or commands that can be used in Django statements using...From django.xxx import.yyy.I hope I am making myself understood.Does anyone have suggestions on sites, documents, or books that I can use as a reference source?Thanks in advance for fielding my newbie question.