views:

123

answers:

4

Hi

Is 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.

Any suggestions would be very much appreciated.

Thanks

L.

+3  A: 

Run:

pydoc -p 8080

And go here.

scompt.com
You are the master! Thanks a billion!
MacPython
A: 
Russell Dias
This is for the Python core and has nothing to do with Pylons.
Michael Mior
@michaelmior Who said anything about pylons? The question is for Django and Python.
Jason Webb
+2  A: 

For django use this. It is a little out of date but still relevant.

For python I like this quick reference.

Jason Webb
A: 

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.

blokeley
Blerk. As new to Django, how do I download them? I don't seem to have it installed.
Charles Merriam
@Charles. I installed django on Windows using easy_install and they're installed. I haven't checked my ubuntu box so the admin-docs app might not be installed automatically on ubuntu. If you say what your OS, python and django versions are, maybe someone will be able to help.
blokeley
Great! All happy now.
Charles Merriam