I am running python-mode with iPython in emacs. Especially with numpy packages, when I type
[1]: help(numpy.array)
or anything similar in the interactive buffer, pages and pages of documentation are printed in the buffer, making it difficult to search through the other material printed in the buffer. Is there a better way to go about this? In R, you can display help pages in a web browser (the documents are on local HD) very easily by changing options(help_type="html")
, and there the document is formatted nicely also. Is there anything like this in Python, or what do you do? I don't always have an internet connection so I'd like a local HD solution please.