From 39692533aa154b38a7fe523f2fa2b72afd36218a Mon Sep 17 00:00:00 2001 From: Swee Date: Sat, 5 Oct 2024 15:26:51 -0700 Subject: [PATCH] Update search --- cc/search | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cc/search b/cc/search index d921cf1..02ecb64 100644 --- a/cc/search +++ b/cc/search @@ -2,7 +2,8 @@ from duckduckgo_search import DDGS import duckduckgo_search from sys import argv try: - request = DDGS().text(" ".join(argv[3:])) +#if True: + request = DDGS().text(" ".join(argv[3:]), max_results=1) print(request[0]["href"] + " ⁜ " + request[0]["title"] + " ⁜ " + request[0]["body"]) except duckduckgo_search.exceptions.RatelimitException: print("DuckDuckGo was rate limited, please try again later.") \ No newline at end of file