search_pypi
Search the Python Package Index (PyPI) for Python packages to retrieve relevant packages based on a specified query, aiding in code research and development.
Instructions
Search PyPI for Python packages
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | Search query |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "Search query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}