pyGoogle 是 Python 对 Google API 的封装。
示例代码:
>>> import google >>> google.setLicense('...') # must get your own key! >>> data = google.doGoogleSearch('python') >>> data.meta.searchTime 0.043221000000000002 >>> data.results[0].URL 'http://www.python.org/' >>> data.results[0].title ' **Python** Language Website'