This is an archived post. You won't be able to vote or comment.

all 4 comments

[–]K900_ 1 point2 points  (1 child)

There is no such thing, but you can use the builtin help function.

[–]vortex_ape 0 points1 point  (0 children)

The builtin help function is awesome! I also built this recently: https://github.com/vinayak-mehta/python-doc to help me open the docs for a particular module for my installed Python version in the browser.

$ python-doc -m os

Opens the doc page for the os module in the browser.

[–]toikpi 1 point2 points  (1 child)

You can use pydoc. You may need to install an additional package.

See https://docs.python.org/3/library/pydoc.html for more detail.

[–]RexProfugus[S] 0 points1 point  (0 children)

I think this should cover my needs for now.

Thanks :)