MeowNex/cc/search

9 lines
323 B
Text
Raw Normal View History

2024-10-05 14:57:55 -07:00
from duckduckgo_search import DDGS
2024-10-05 15:07:01 -07:00
import duckduckgo_search
2024-10-05 15:29:18 -07:00
from sys import argv, exit
2024-10-05 17:24:54 -07:00
try:
#if True:
2024-10-05 17:22:06 -07:00
request = DDGS().text(" ".join(argv[3:]), max_results=1, region='wt-wt', timelimit='7d')
2024-10-05 15:09:51 -07:00
print(request[0]["href"] + " ⁜ " + request[0]["title"] + " ⁜ " + request[0]["body"])
2024-10-05 17:24:54 -07:00
except Exception as e:
print(e)