我可以做以下在谷歌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。
1条答案
按热度按时间s6fujrry1#
它与
google
软件包一起安装,请访问以下链接:https://pypi.org/project/google/
https://github.com/MarioVilas/googlesearch