python colab中的谷歌搜索包

mfuanj7w  于 2023-02-15  发布在  Python
关注(0)|答案(1)|浏览(115)

我可以做以下在谷歌colab:

import googlesearch as g
urls = list(g.search(search_string, stop=results_count, lang='en'))

但是我猜这个googlesearch是哪个包?
我检查了this包,但它的search()方法中没有stop参数,所以我猜它与colab中安装的不同。(在此API中,相同的参数称为num_results,如上面链接的pypi页面中的hello world示例所示。)
我如何知道colab中安装了哪个googlesearch软件包,也许是为了在我的笔记本电脑上本地使用它?
PS:你可以在this notebook中查看API。

相关问题