I imagine what you mean by class browsing. If you are comfortable with the terminal you could try to inspect python/django objects via the shell and autocompletion.
$ ./manage shell
Python 2.6.4 (r264:75706, Feb 6 2010, 01:49:44)
Type "copyright", "credits" or "license" for more information.
IPython 0.10 -- An enhanced Interactive Python.
? -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help -> Python's own help system.
object? -> Details about 'object'. ?object also works, ?? prints more.
In [1]: from your.app.models import *
In [2]:
...
You may also like this enhanced version of the Django shell.
I also recommend the django documentation, e.g. if you like to learn about Request
and Response
objects:
How to enable tab-completion in the default python shell: