在Python中使用Google Image Search API时,请使用“面部”过滤器作为图像类型

时间:2013-09-06 17:55:07

标签: python google-api google-api-python-client

我正在尝试使用以下Python代码从Google获取图片:

BASE_URL = 'https://ajax.googleapis.com/ajax/services/search/images?v=1.0&rsz=large&q=%s&start=%d'

BASE_URL = BASE_URL %(name, count)
request = urllib2.Request(BASE_URL)
response = urllib2.urlopen(request)

然后我使用simplejson以JSON格式加载响应。 有什么方法可以使用“按图搜索”类型作为“面部”,以便我只能使用Python检索面部?

1 个答案:

答案 0 :(得分:0)