I find the official Python documentation a nightmare to navigate, but I love railsapi. Does anyone know of a browser for the Python standard library documentation with similar features to railsapi? Specifically the class browser sidebar and realtime search.
EDIT: I’m familiar with pydoc and it’s not really much of an improvement over the online docs, IMO.
iPython, an interactive Python shell replacement (read: enhancement), includes the
??operator, which gives you a convenient printout of the pydoc information.For example:
Might not be exactly what you’re looking for, but it’s a great way to interact with Python’s documentations.