Update cc/search

This commit is contained in:
swee 2024-10-05 17:32:55 -07:00
parent ae469f8d30
commit 9a10b60de0

View file

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