Django python cheat sheet documentation

Is there a Cheat Sheet or Document where I can see all the built-in modules, functions, commands, etc. in Django and / or Python, and where I get an overview of ALL possible elements that I could use. I am sure it will be a large file / image, etc., but it would be very useful to know which commands I could use.

+3
source share
4 answers

Run:

pydoc -p 8080

And go here .

+5
source

For django use this . This is a bit outdated, but still relevant.

For python, I like this quick link.

+2
  • Python.
0

If you are using django, a useful way to view template tags, models, etc. for your project - enable admin docs. See this post on how to enable admin docs .

0
source

Source: https://habr.com/ru/post/1751017/


All Articles