JuaniFilardo
JuaniFilardo
@stella-lu, I reckon that a better option than `os.chdir()` might be: ``` import sys sys.path.append('/home/your_user/Projects/Google-Search-API') from google import google ``` That should do. Try it and let me know if...
That's because you didn't install the packages needed. First run `pip install -r requirements.txt` (or install each module manually till you don't get any errors).
@asharpie How did you install and how are you importing the module? I mean, did you appended the path or something?
In my experience, waiting between 50 and 65 seconds between each request, and between 3 and 4 minutes every 100 request did the trick. I was able to perform more...
See #33 for a workaround on this that does not require to switch the user agent. Otherwise, yo can submit a pull request with the changes needed. Have a good...
Hi @SearchPirat! As far as I'm concerned, that's the time that each requests takes; I'm not pretty sure what could be done to reduce it (maybe some refactoring of the...
By default, the search method will return the ten results from the first page from Google. Would you want to get, for example, just the first 5 results?
Um, I really don't know if the improvement would be that significant. Maybe you could try hardcoding the library in order to fetch fewer results, and then measuring the mean...
Simply wait a random time between queries using time.sleep(). Note that every 100 queries, you should wait a little bit more. This way has worked for me without getting 503...
Oh, I see. The query is "just one", but you're actually making it 100 times, for pages 1 to 100. This is a workaround you can use: - Edit the...