0

ネットからダウンロードしたAPIラッパーを使用して、新しいAzureBingAPIから結果を取得しようとしています。指示に従って実装しようとしていますが、ランタイムエラーが発生します:

Traceback (most recent call last):
  File "bingwrapper.py", line 4, in <module>
    bingsearch.request("affirmative action")
  File "/usr/local/lib/python2.7/dist-packages/bingsearch-0.1-py2.7.egg/bingsearch.py", line 8, in request
    return r.json['d']['results']
TypeError: 'NoneType' object has no attribute '__getitem__'

これはラッパーコードです:

import requests

URL = 'https://api.datamarket.azure.com/Data.ashx/Bing/SearchWeb/Web?Query=%(query)s&$top=50&$format=json'
API_KEY = 'SECRET_API_KEY'

def request(query, **params):
    r = requests.get(URL % {'query': query}, auth=('', API_KEY))
    return r.json['d']['results']

手順は次のとおりです。

>>> import bingsearch
>>> bingsearch.API_KEY='Your-Api-Key-Here'
>>> r = bingsearch.request("Python Software Foundation")
>>> r.status_code
200
>>> r[0]['Description']
u'Python Software Foundation Home Page. The mission of the Python Software Foundation is to promote, protect, and advance the Python programming language, and to ...'
>>> r[0]['Url']
u'http://www.python.org/psf/

これは、ラッパーを使用する私のコードです(指示に従って):

import bingsearch
bingsearch.API_KEY='abcdefghijklmnopqrstuv'
r = bingsearch.request("affirmative+action")
4

1 に答える 1

1

私はこれを自分でテストしましたが、不足しているのはクエリを適切にURLエンコードすることです。それがなければ、私は400のコードを取得していました。

import urllib2
import requests

# note the single quotes surrounding the query 
URL = "https://api.datamarket.azure.com/Data.ashx/Bing/SearchWeb/Web?Query='%(query)s'&$top=50&$format=json"

query = 'affirmative+action'

# query == 'affirmative%2Baction'
r = requests.get(URL % {'query': urllib2.quote(query)}, auth=('', API_KEY))
print r.json['d']['results']

requestラッパーは結果のを返すため、この例はあまり意味がありlistませんが、主な使用例では、ラッパーを呼び出してstatus_code、戻り値(リスト)の属性をチェックしています。その属性は応答オブジェクトに存在しますが、ラッパーからは返しません。

于 2012-07-01T03:10:00.690 に答える