pytrends
pytrends copied to clipboard
Pseudo API for Google Trends
We have some basic tests, but standardizing them as pytest issues that we can run automatically before merging would be great.
Hello, It is possible to observe compound keywords in the same keyword on Google Trends like '**blockchain + bitcoin**'. Your try except block only takes the first element of the...
I encountered this problem while trying to get monthly data, so for me this bug is a feature. Code: pytrend = TrendReq() kw_list=['GM', 'car', 'car sales near me'] def get_trends(word_list,...
Currently the lowest level of geo we can get from pytrend is by State. In order to get to dma/city we need to tune the request.py a little.
In the Google Trends auto-suggest, it offers to fetch the data for a keyword as a "keyword", "company", "topic", etc... Is this possible with this API too? How to do...
The "hl" passed as an argument was not being used in the "trending_searches" method and "realtime_trending_searches". Please review and merge.
Hello, I want to get the related topics and related queries for a category without passing a keyword. Example: https://trends.google.com/trends/explore?cat=184&geo=US If you go to the URL, you can see the...
When I invoke get_historical_interest the api returns the data, but the request itself yields a 400. Here's the code. ``` pytrend = TrendReq(timeout=(10,25), retries=2, backoff_factor=0.1, tz=0) kw_list = ["Bitcoin", "BTC"]...
When dead proxy is passed via `request_args`, `TrendReq.GetGoogleCookie()` will loop infinitely in attempt to execute request. This is not very useful by itself, and also contradicts handling of proxies passed...