From d102edb61cd177629cbf28dc93e5db223aadd52d Mon Sep 17 00:00:00 2001 From: Swee Date: Sat, 5 Oct 2024 15:29:18 -0700 Subject: [PATCH] Update search --- cc/search | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cc/search b/cc/search index 56ecb60..fb85375 100644 --- a/cc/search +++ b/cc/search @@ -1,9 +1,11 @@ from duckduckgo_search import DDGS import duckduckgo_search -from sys import argv +from sys import argv, exit try: #if True: request = DDGS().text(" ".join(argv[3:]), max_results=1, backend='api') print(request[0]["href"] + " ⁜ " + request[0]["title"] + " ⁜ " + request[0]["body"]) + exit() except duckduckgo_search.exceptions.RatelimitException: - print("DuckDuckGo was rate limited, please try again later.") \ No newline at end of file + print("DuckDuckGo was rate limited, please try again later.") + exit() \ No newline at end of file