Cheat sheet documentation django python [closed]
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe t开发者_Go百科he problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this questionIs there any Cheat Sheet or Document where I can see all the build-in modules, functions, commands etc in Django and or Python and where I will get an overview of ALL possible elements I could use. I am sure this is would be a big file/image etc , but it would be very helpful to know what commands I could use.
Run:
pydoc -p 8080
And go here.
For django use this. It is a little out of date but still relevant.
For python I like this quick reference.
- There is the Global Module Index for Python.
- Here are some build-in functions
If you're using django, a useful way of browsing the template tags, models and so on for your project is to enable admin docs. See this post on how to enable admin docs.
精彩评论