Looking for a command-line "pip search" feature. Yip was described as a "a feature rich alternative to pip search", so I was hoping it used some other mechanism than the Pip search feature. Sadly, I guess not:
~/yip$ python yip somepackage
/home/user/yip/yip:19: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html
import pkg_resources
|----------------------------------------------------------------------------------------------------| 0.0% Traceback (most recent call last):
File "/home/user/yip/yip", line 431, in <module>
else normal_search(opts['query'], opts['limit'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/user/yip/yip", line 153, in normal_search
unordered_results = client.search({'name': q, 'summary': q}, 'or')
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.12/xmlrpc/client.py", line 1122, in __call__
return self.__send(self.__name, args)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.12/xmlrpc/client.py", line 1461, in __request
response = self.__transport.request(
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.12/xmlrpc/client.py", line 1166, in request
return self.single_request(host, handler, request_body, verbose)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.12/xmlrpc/client.py", line 1182, in single_request
return self.parse_response(resp)
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.12/xmlrpc/client.py", line 1351, in parse_response
return u.close()
^^^^^^^^^
File "/usr/lib/python3.12/xmlrpc/client.py", line 668, in close
raise Fault(**self._stack[0])
xmlrpc.client.Fault: <Fault -32500: "RuntimeError: PyPI no longer supports 'pip search' (or XML-RPC search). Please use https://pypi.org/search (via a browser) instead. See https://warehouse.pypa.io/api-reference/xml-rpc.html#deprecated-methods for more information.">
Looking for a command-line "pip search" feature. Yip was described as a "a feature rich alternative to pip search", so I was hoping it used some other mechanism than the Pip search feature. Sadly, I guess not: