Nv7-GitHub / googlesearch

A Python library for scraping the Google search engine.

Home Page:https://pypi.org/project/googlesearch-python/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

What a cool module!

xx-m-h-u-xx opened this issue · comments

Sorry it's not really an issue I'm addressing about.

When using the googlesearch module's search function, can an additional parameter such as specifying a site: www.wikipedia.com to Google Index be accepted? I want to limit the results so that when I execute the search function, all related URL links, based on the given query, gets retrieved from sources in the Wikipedia website.

Do you mean this?

>>> for i in search("Google site:wikipedia.com"):
...     print(i)
... 
https://www.wikipedia.com/wiki/Topic-Sensitive_PageRank
https://wikipedia.com/wiki/Google_(verb)
https://en.wikipedia.com/wiki/History_of_Google
https://www.wikipedia.com/wiki/Alphabet_Inc.
https://en.wikipedia.com/wiki/Google_Earth
https://www.wikipedia.com/wiki/Category:Google
https://www.wikipedia.com/wiki/Google_Video
https://www.wikipedia.com/wiki/Waymo
https://en.wikipedia.com/wiki/Googol
https://wikipedia.com/wiki/Google_logo
https://en.wikipedia.com/wiki/Knowledge_Graph
https://en.m.wikipedia.com/wiki/Android_(Operating_System)
https://www.wikipedia.com/wiki/Google_Hangouts

Oooh! So you can add a "site" argument as a parameter to the googlesearch function? That's cool ! The documentation should include that.. correct me if I'm wrong, is it stated?