1
0
Fork 0
forked from swee/MeowNex
MeowNex/cc/search
2024-10-05 17:32:55 -07:00

9 lines
No EOL
340 B
Text

from duckduckgo_search import DDGS
import duckduckgo_search
from sys import argv, exit
try:
#if True:
request = DDGS().text(" ".join(argv[3:]), max_results=1, region='wt-wt', timelimit='7d', safesearch="on")
print(request[0]["href"] + " ⁜ " + request[0]["title"] + " ⁜ " + request[0]["body"])
except Exception as e:
print(e)