Googel knowledge graph API
Freebase
本想用freebase的API,结果打开发现google已经将freebase的API关闭了:On 16 December 2014, Knowledge Graph announced that it would shut down Freebase over the succeeding six months and help with the move of the data from Freebase to Wikidata.On 16 December 2015, Google officially announced the Knowledge Graph API, which is meant to be a replacement to the Freebase API. Freebase.com was officially shut down on 2 May 2016.,现在只留下Freebase Triples可供下载,网址:https://developers.google.com/freebase/
google knowledge graph
于是打开google knowledge graph 。网址:https://developers.google.com/knowledge-graph/
Sample request
开始是一个Sample request:https://kgsearch.googleapis.com/v1/entities:search?query=taylor+swift&key=API_KEY&limit=1&indent=True, 图中的查询语句直接填入搜索引擎的网址栏即可查询,但是需要申请一个google API key,申请好之后替换图中的API key,填入搜索引擎的网址栏,返回的是一个格式为JSON-LD的结构化数据。
Python
官网上sample request接下来是各种语言的示例,我选择了python,下面是示例代码
"""Example of Python client calling Knowledge Graph Search API."""
import json
import urllib
api_key = open('.api_key').read()
query = 'Taylor Swift'
service_url = 'https://kgsearch.googleapis.com/v1/entities:search'
params = {
'query': query,
'limit': 10,
'indent':