我只是想使用 Python 和 Google 专利搜索 API 找出专利的所有者。
import urllib2
import json
url = ('https://ajax.googleapis.com/ajax/services/search/patent?' +
'v=1.0&q=barack%20obama')
request = urllib2.Request(url, None, {})
response = urllib2.urlopen(request)
# Process the JSON string.
print json.load(response)
# now have some fun with the results...
Run Code Online (Sandbox Code Playgroud)
这个结果并没有告诉受让人。我怎么才能得到它?