Google-Search-API
Google-Search-API copied to clipboard
Error accessing
Hi, Search works first times and after a while gives error accessing for all pages. Is there a limit? \ty
I have the same problem..
Same problem here!
google ban your ip after multiple search from python.just use a vpn than try again it will work for around 100 search than again change your ip
I faced the same problem. Can anyone please resolve this?
Same problem here. I am wondering what's the limit rule and how to solve it.
Same here. I used a VPN and the problem went away. Suspect rate limiting. Is there a delay option? I found this web scraping reference useful. For example:
import time
for term in ["web scraping", "web crawling", "scrape this site"]:
t0 = time.time()
r = requests.get("http://example.com/search", params=dict(
query=term
))
response_delay = time.time() - t0
time.sleep(10*response_delay) # wait 10x longer than it took them to respond