I'm looking for a way to ease my way into new modules by extensively using the help().
The issue I'm currently having is that the output is very helpful, but difficult to scroll through in the interactive interpreter. What I'm looking for is a way for me to explore python modules in a way that is similar to how R handles documentation (when using R PRoject).
R outputs a single HTML file that allows you to scroll through the parameters, functions; I'm using python 2.7 on Windows.
I found pydoc, which outputs exactly what I'm looking for in the console, but I'm not entirely sure how I'd go about moving away from the 'webserver' documenting all of my installed packages to just serving and opening a single html page once I type help(x), outputting what it would normally output in the interpreter.
Any help is greatly appreciated.
Thanks for the answers. My final solution is a combination of your two methods:
Calling help(os) now generates a temporary HTML file (in pydoc) and opens it in my standard browser; this was exactly what I needed.