Update search
This commit is contained in:
parent
b164f60997
commit
39692533aa
1 changed files with 2 additions and 1 deletions
|
@ -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.")
|
Loading…
Reference in a new issue