googlesearch icon indicating copy to clipboard operation
googlesearch copied to clipboard

A Python library for scraping the Google search engine.

Results 37 googlesearch issues
Sort by recently updated
recently updated
newest added

Does this project have any quota that limits how many times we can use in one day or in one minute?

API_KEY = "2fdb6ced427de857f32870d733fe69b0" query = "loli" proxy = f"http://scraperapi.country_code=us:{API_KEY}@proxy-server.scraperapi.com:8001" loli_links = [link for link in search(term=query, proxy=proxy)]

Hi, These lines over here: https://github.com/Nv7-GitHub/googlesearch/blob/v1.1.0/googlesearch/__init__.py#L48-L54 stop the package from retrieving the first result, which unfortunately is usually the correct...

Since requests seems to have a very long time out length, we can add a timeout in order to stop requests from blocking up our code. This is especially useful...

https://github.com/Nv7-GitHub/googlesearch/blob/be88ef64de65529e5d42f14b4f2cd3f675ae4adf/googlesearch/__init__.py#L42-L62 Code cannot exit the while loop if the value of `start` never goes up, and the value of `start` only ever goes up if a valid result is yielded....

So, what I'm trying to do is to open the first result of every search in google via python to access its website. Everything works fine until I insert the...

is there anyway to search through a specific section of google such as google news or google finance? I tried changing the init file where url="https://www.news.google.com/search", *added news between www...

Currently a specific version of `beautifulsoup4` and `requests` is specified, but it would be nice to loosen this up so this model can be used with other modules more easily

Automated queries Google's Terms of Service don't allow the sending of automated queries of any sort to our system without express permission in advance from Google. Sending automated queries consumes...

the following bit of code prints out the search query as a result for me: ```python from googlesearch import search se = search("Google",num_results=10,lang="en") print(se[-1]) ``` here's what the output of...