MCPcopy Create free account
hub / github.com/CaraJ7/MMSearch / __init__

Method __init__

utils/utils.py:65–67  ·  view source on GitHub ↗
(self, rapidapi_name)

Source from the content-addressed store, hash-verified

63## Search Engine API
64class RapidAPI:
65 def __init__(self, rapidapi_name):
66 self.rapidapi_name = rapidapi_name
67 self.ddgs = DDGS(proxy=PROXY['https'], timeout=50) if len(PROXY) != 0 else DDGS(timeout=50)
68
69 def query(self, text: str, max_results: int) -> List[Dict[str, Any]]:
70 initial_delay = 1

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected