(self, license=None, throttle=0.5, language=None)
| 1289 | class DuckDuckGo(SearchEngine): |
| 1290 | |
| 1291 | def __init__(self, license=None, throttle=0.5, language=None): |
| 1292 | SearchEngine.__init__(self, license or DUCKDUCKGO_LICENSE, throttle, language) |
| 1293 | |
| 1294 | def search(self, query, type=SEARCH, start=None, count=None, sort=RELEVANCY, size=None, cached=True, **kwargs): |
| 1295 | """" Returns a list of results from DuckDuckGo for the given query. |