From bcbe35e792aaddf1e0fa5f4e1ac9eca58493e7c8 Mon Sep 17 00:00:00 2001 From: Swee Date: Sat, 5 Oct 2024 17:15:50 -0700 Subject: [PATCH] Update search --- cc/search | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cc/search b/cc/search index fb85375..d3c0cb3 100644 --- a/cc/search +++ b/cc/search @@ -1,11 +1,11 @@ from duckduckgo_search import DDGS import duckduckgo_search from sys import argv, exit -try: -#if True: +#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.") - exit() \ No newline at end of file +#except duckduckgo_search.exceptions.RatelimitException: +# print("DuckDuckGo was rate limited, please try again later.") +# exit() \ No newline at end of file