MeowNex/cc/search
2024-10-05 17:25:39 -07:00

9 lines
No EOL
323 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')
print(request[0]["href"] + " ⁜ " + request[0]["title"] + " ⁜ " + request[0]["body"])
except Exception as e:
print(e)