(self, license=None, throttle=0.5, language=None)
| 1018 | class Google(SearchEngine): |
| 1019 | |
| 1020 | def __init__(self, license=None, throttle=0.5, language=None): |
| 1021 | SearchEngine.__init__(self, license or GOOGLE_LICENSE, throttle, language) |
| 1022 | |
| 1023 | def search(self, query, type=SEARCH, start=1, count=10, sort=RELEVANCY, size=None, cached=True, **kwargs): |
| 1024 | """ Returns a list of results from Google for the given query. |