pyGoogle是Python对GoogleAPI的封装。
示例代码:
>>>importgoogle>>>google.setLicense('...')#mustgetyourownkey!>>>data=google.doGoogleSearch('python')>>>data.meta.searchTime0.043221000000000002>>>data.results[0].URL'https://www.python.org/'>>>data.results[0].title'PythonLanguageWebsite'
评论