(self, license=None, throttle=0.5, language=None)
| 1206 | class Bing(SearchEngine): |
| 1207 | |
| 1208 | def __init__(self, license=None, throttle=0.5, language=None): |
| 1209 | SearchEngine.__init__(self, license or BING_LICENSE, throttle, language) |
| 1210 | |
| 1211 | def search(self, query, type=SEARCH, start=1, count=10, sort=RELEVANCY, size=None, cached=True, **kwargs): |
| 1212 | """" Returns a list of results from Bing for the given query. |