1
0
Fork 0
forked from swee/MeowNex
MeowNex/cc/search

11 lines
401 B
Text
Raw Normal View History

2024-10-05 14:57:55 -07:00
from duckduckgo_search import DDGS
from sys import argv
2024-10-05 15:06:13 -07:00
try:
request = DDGS().text(" ".join(argv[3:]))
for i in range(0,3):
try:
print(request[i]["href"] + " ⁜ " + request[i]["title"] + " ⁜ " + request[i]["body"])
except:
break
except duckduckgo_search.exceptions.RatelimitException:
print("DuckDuckGo was rate limited, please try again later.")