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

5 lines
214 B
Text
Raw Normal View History

2024-10-05 14:57:55 -07:00
from duckduckgo_search import DDGS
from sys import argv
print("Please stand by...")
2024-10-05 14:59:00 -07:00
request = DDGS().text(" ".join(argv[3:]))
2024-10-05 15:02:32 -07:00
print(request[0]["href"] + " ⁜ " + request[0]["title"] + " ⁜ " + request[0]["body"])