Domanda

In "ipython", we use some_obj?? to get documentation, which uses "less" to show the docs. How can we get the document out of "less", into a text editor? The content is fed from stdin, so pressing "v" gives the error: "can not edit standard input"

È stato utile?

Soluzione

some_obj?? is equivalent the built-in help function. This is a wrapper around pydoc.help.

import pydoc
doc = pydoc.text.document(some_obj)
print doc

You may save the documentation to a file. Then open in a text editor.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top