We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
micropip.search()
It would be great to have micropip.search(), analogous to pip search which can search Python packages.
pip search
micropip.search() can be used before running micropip.install() so that users can search whether:
micropip.install()
>>> await micropip.search("numpy") {"name": "numpy", "version": "1.21.4", "type": "pyodide": "available": True} >>> await micropip.search("black") {"name": "black", "version": "22.3.0", "type": "PyPI": "available": True} >>> await micropip.search("torch") {"name": "torch", "version": "1.11.0", "type": "PyPI": "available": False}
The text was updated successfully, but these errors were encountered:
The pip search currently doesn't work pypa/pip#5216 and the corresponding PyPI API is currently disabled https://status.python.org/incidents/grk0k7sz6zkp. For now the only working solutions is https://github.com/victorgarric/pip_search as far as I know.
Though in the end since since users seem to be doing fine without this functionality in pip, maybe there could also live without it in micropip.
Sorry, something went wrong.
No branches or pull requests
🚀 Feature
It would be great to have
micropip.search()
, analogous topip search
which can search Python packages.Additional context
micropip.search()
can be used before runningmicropip.install()
so that users can search whether:Example output
The text was updated successfully, but these errors were encountered: