Apopos / find contextual information

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

+3
source share
2 answers

I'm not talking about searching in PyPI!

? , , Python. google/yahoo , this

+1
$ apt-cache search <keyword> | grep python
+1

Source: https://habr.com/ru/post/1763638/


All Articles