Я хочу найти все Python пакеты, начинающиеся с "truffle", используя pip
.
Однако, как видно из приведенного ниже, мои поиски возвращают довольно странные результаты, возвращая только те пакеты, где поиск строка соответствует полному слову. Кроме того, кажется, что и *
(glob), и .*
(regex) игнорируются?
nlykkei:~$ pip3 search truffle
truffle (0.1.dev0) - Code search, documentation aid, code visualizer
nlykkei:~$ pip3 search 'truffle*'
truffle (0.1.dev0) - Code search, documentation aid, code visualizer
nlykkei:~$ pip3 search 'truffle.*'
truffle (0.1.dev0) - Code search, documentation aid, code visualizer
nlykkei:~$ pip3 search truffleHog
truffleHog (2.0.99) - Searches through git repositories for high entropy strings, digging deep into commit history.
django-trufflehog (0.3.0) - Keep track of creation, update and deletion of models
truffleHogRegexes (0.0.7) - These regexes power truffleHog.
Как мне найти "трюфель", чтобы возвращаемые результаты включали?:
truffle (0.1.dev0) - Code search, documentation aid, code visualizer
truffleHog (2.0.99) - Searches through git repositories for high entropy strings, digging deep into commit history.
django-trufflehog (0.3.0) - Keep track of creation, update and deletion of models
truffleHogRegexes (0.0.7) - These regexes power truffleHog.