pyGoogle - Python的Google API封装


Python
跨平台
Python

软件简介

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'