我尝试使用上述API获取查询的谷歌搜索结果数量,但是它没有给我正确的结果。我将自定义搜索引擎配置为搜索整个网络。例如,如果我搜索"你好"我得到了113,000,000个结果。但是,如果我自己在Google上这样做,我会得到1,340,000,000。我对所有这些东西都很陌生,所以感觉很丢失,有人可以帮忙吗?感谢
from googleapiclient.discovery import build
import pprint
my_api_key = "API KEY"
my_cse_id = "CSE ID"
def main():
service = build("customsearch", "v1",
developerKey = my_api_key)
res = service.cse().list(q = 'hello', cx= my_cse_id,).execute()
pprint.pprint(res)
if __name__ == '__main__':
main()