如何使用google customsearch API查询高级搜索?

时间:2016-12-08 05:37:20

标签: python python-3.x google-api google-search-api google-api-python-client

如何以编程方式使用Google Python客户端库,使用Google自定义搜索API搜索引擎进行advanced search,以便根据某些高级条款和参数返回首个n链接列表搜索我查询?

我尝试检查documentation(我没有找到任何示例)和answer。但是,后者没有用,因为目前不支持AJAX API。到目前为止,我试过这个:

from googleapiclient.discovery import build
import pprint

my_cse_id = "test"

def google_search(search_term, api_key, cse_id, **kwargs):
    service = build("customsearch", "v1",developerKey="<My developer key>")
    res = service.cse().list(q=search_term, cx=cse_id, **kwargs).execute()
    return res['items']

results = google_search('dogs', my_api_key, my_cse_id, num=10)

for result in results:
    pprint.pprint(result)

而且:

import pprint

from googleapiclient.discovery import build


def main():
  service = build("customsearch", "v1",developerKey="<My developer key>")

  res = service.cse().list(q='dogs').execute()
  pprint.pprint(res)

if __name__ == '__main__':
  main()

因此,任何关于如何使用谷歌的搜索引擎API和advanced search的想法?这就是我的凭据在Google控制台上的显示方式:

credentials

3 个答案:

答案 0 :(得分:6)

首先,您需要按照here所述定义自定义搜索,然后确保您的my_cse_id与Google API custom search (cs) id匹配,例如

cx='017576662512468239146:omuauf_lfve'

是一种搜索引擎,仅搜索以.com结尾的域名。

接下来我们需要developerKey

from googleapiclient.discovery import build
service = build("customsearch", "v1", developerKey=dev_key)

现在我们可以执行搜索了。

res = service.cse().list(q=search_term, cx=my_cse_id).execute()

我们可以使用here描述的参数添加其他搜索参数,例如语言或国家/地区,例如

res = service.cse().list(q="the best dog food", cx=my_cse_id, cr="countryUK", lr="lang_en").execute()

将用英语搜索“最好的狗食”,该网站需要来自英国。

以下修改过的代码对我有用。 api_key已删除,因为它从未使用过。

from googleapiclient.discovery import build

my_cse_id = "012156694711735292392:rl7x1k3j0vy"
dev_key = "<Your developer key>"

def google_search(search_term, cse_id, **kwargs):
    service = build("customsearch", "v1", developerKey=dev_key)
    res = service.cse().list(q=search_term, cx=cse_id, **kwargs).execute()
    return res['items']

results = google_search('boxer dogs', my_cse_id, num=10, cr="countryCA", lr="lang_en")
for result in results:
    print(result.get('link'))

<强>输出

http://www.aboxerworld.com/whiteboxerfaqs.htm
http://boxerrescueontario.com/?section=available_dogs
http://www.aboxerworld.com/abouttheboxerbreed.htm
http://m.huffpost.com/ca/entry/10992754
http://rawboxers.com/aboutraw.shtml
http://www.tanoakboxers.com/
http://www.mondlichtboxers.com/
http://www.tanoakboxers.com/puppies/
http://www.landosboxers.com/dogs/puppies/puppies.htm
http://www.boxerrescuequebec.com/

答案 1 :(得分:2)

如果您不想使用google discovery api,请使用python请求库的替代方法:

import requests, pprint
q='italy'
api_key='AIzaSyCs.....................'

q = requests.get('https://content.googleapis.com/customsearch/v1', 
    params={ 'cx': '013027958806940070381:dazyknr8pvm', 'q': q, 'key': api_key} )
pprint.pprint(q.json())

答案 2 :(得分:1)

这已经很晚了,但希望能帮到某人......

使用高级搜索

response=service.cse().list(q="mysearchterm", 
cx="017576662512468239146:omuauf_lfve", ).execute()

list()方法需要更多参数来帮助推进搜索...请在此处查看参数: https://developers.google.com/custom-search/json-api/v1/reference/cse/list