get_python_docs
Fetch Python documentation directly using natural language queries. This tool helps developers quickly access relevant Python documentation by integrating with the Brave Search API.
Instructions
Get Python documentation for a given query
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | The search query for Python documentation |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "The search query for Python documentation",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}