Source code for tooluniverse.interpro_tool
import requests
from typing import Any, Dict
from .base_tool import BaseTool
from .tool_registry import register_tool
[docs]
@register_tool("InterProRESTTool")
class InterProRESTTool(BaseTool):
[docs]
def __init__(self, tool_config: Dict):
super().__init__(tool_config)
self.base_url = "https://www.ebi.ac.uk/interpro/api"
self.session = requests.Session()
self.session.headers.update(
{"Accept": "application/json", "User-Agent": "ToolUniverse/1.0"}
)
self.timeout = 30
[docs]
def _build_url(self, args: Dict[str, Any]) -> str:
"""Build URL from endpoint template and arguments"""
url = self.tool_config["fields"]["endpoint"]
for k, v in args.items():
url = url.replace(f"{{{k}}}", str(v))
return url
[docs]
def _extract_data(self, data: Dict, extract_path: str = None) -> Any:
"""Extract specific data from API response"""
if not extract_path:
return data
# Handle specific InterPro extraction patterns
if extract_path == "results":
return data.get("results", [])
elif extract_path == "count":
return data.get("count", 0)
elif extract_path == "metadata":
return data.get("metadata", {})
return data
[docs]
def run(self, arguments: Dict[str, Any]) -> Dict[str, Any]:
"""Execute the InterPro API call"""
try:
# Build URL from endpoint template
url = self._build_url(arguments)
# Make API request
response = self.session.get(url, timeout=self.timeout)
response.raise_for_status()
# Parse JSON response
data = response.json()
# Extract data if specified
extract_path = self.tool_config["fields"].get("extract_path")
if extract_path:
result = self._extract_data(data, extract_path)
else:
result = data
return {
"status": "success",
"data": result,
"url": url,
"count": len(result) if isinstance(result, list) else 1,
}
except Exception as e:
return {
"status": "error",
"error": f"InterPro API error: {str(e)}",
"url": url,
}