On unix-like systems, we can apopos manually search for page names and descriptions so that we can find information related to the context.
For example, apropos delete will provide me with a list of all kinds of software related to "uninstall". Does anyone know if this already exists for Python or do I need to code it?
What I basically want is the same semantics as in Unix apropos in Python ... find related modules / functions / etc. I'm not talking about doing a search on PyPi, but rather I find stuff when I'm offline, for example.
Cheers, Marcus
source
share