gopher_batch_fetch
Fetch multiple Gopher URLs in parallel to improve performance. Returns responses in the same order as input URLs.
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
Returns: List of responses in the same order as the input URLs
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| urls | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |