Category "pydoc"

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