Fetch multiple Gopher resources
gopher_batch_fetchFetch multiple Gopher URLs in parallel to improve performance and reduce latency when retrieving resources.
Instructions
Fetch multiple Gopher URLs in parallel for improved performance.
Uses asyncio.gather() to fetch all URLs concurrently, which is much faster than fetching them sequentially. Useful for fetching multiple menu items or related resources at once.
Args: urls: List of Gopher URLs to fetch (at most 50 per call)
Returns: List of responses in the same order and of the same length as the input URLs, so callers can zip responses to requests by index.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| urls | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |