views:

90

answers:

1

I use python.org a lot for reading python documentation. I also use ipython help function, but I would prefer a GUI app that I could run on my machine that would show documentation for all installed packages.

Do you know if anything like this exists?

Do you have any suggestions?

+6  A: 

The pydoc command has a built-in HTTP server, which you can start with:

pydoc -p 8080

Then head to http://localhost:8080/ in your browser. It will have documentation for all modules installed on its search path, which includes anything in site-packages.

dcrosta
That's cool, but it's DAMN ugly.
tarasm
But because it's built on tables, it actually looks *better* in links!
too much php
Do you mean lynx?
tarasm
links and lynx are both console browsers, w3m is another good one
gnibbler
Well, I guess this is the best way :)
tarasm