GeneralMills / pytrends

Pseudo API for Google Trends
Other
3.27k stars 820 forks source link

pytrends TooManyRequestsError: The request failed: Google returned a response with code 429 #631

Open akshmita opened 3 weeks ago

akshmita commented 3 weeks ago

I am trying to use pytrends to get historical data Example: from pytrends.request import TrendReq

pytrends = TrendReq(hl='en-US', tz=360) kw_list = ["HDFC bank"] pytrends.build_payload(kw_list, cat=0, timeframe='today 5-y', geo='', gprop='') pytrends.interest_over_time()

it gives the following error TooManyRequestsError: The request failed: Google returned a response with code 429 How to address this issue?

arkaydeus commented 3 weeks ago

Looks like google have upgraded their anti-bot measures. Currently this package is broken :-(

akshmita commented 3 weeks ago

Any other library to scrap the google trends data?

sdil87 commented 1 week ago

You can try trendspy - it uses a slightly different approach to the API. Install with pip install trendspy.

Your code would look like this:

from trendspy import Trends
tr = Trends()
df = tr.interest_over_time(['HDFC bank'], timeframe='today 5-y')

But keep in mind that if it's a Google-side blocking, it might not help.