我创建了一个python脚本,该脚本可让我在终端上的google上进行搜索。
from googleapiclient.discovery import build
import pprint
searchSubject = input("Research: ")
#What I'm looking for like on a normal google research
api_key = "my_api_key"
cse_id = "my_cse_id"
def google_search(search_term, api_key, cse_id, **kwargs):
service = build("customsearch", "v1", developerKey=api_key)
res = service.cse().list(q=search_term, cx=cse_id, **kwargs).execute()
return res['items']
results = google_search(str(searchSubject), api_key, cse_id, num=10)
for result in results:
pprint.pprint(result)
问题是,我想在研究中加入某些参数。我正在寻找.onion网站。当我键入时,我会得到沙拉食谱。我希望该研究明确包含.onion(.
是此处的关键词)。我试图找到适当的文档来强制执行参数,但没有找到任何文档。