Category "pydoc"

unable to run pydoc from the command line - "command not found: pydoc"

I'm reading the "Learn Python the Hard Way" and the now the author is saying to run, in the terminal, pydoc input. I do this and get the response:miguel@MBP-de-

How to global search Python documentation from the shell?

pydoc is nice to look up Python documentation for a method foobar from the shell. But it requires me to know both what module a particular method foobar belongs

Python module implemented like a package

I have an application containing a package, thus: * fruits/ | citrus/ | | __init__.py | | oranges.py | | mandarins.py | | satsumas.py | | ... etc T