I am using the pytrends python package to pull search term popularity. It looks like the default frequency is weekly but I need daily data. Is there a parameter to adjust for that? I can't seem to find anything. Here is some code to get you to the same place...
import pytrends
import matplotlib.pyplot as plt
%matplotlib inline
from pytrends.request import TrendReq
pytrends = TrendReq(hl='en-US', tz=360)
pytrends.build_payload(["sp500", "dogs"], cat=0, timeframe='today 5-y', geo='', gprop='')
df = pytrends.interest_over_time()
df.tail()
as you can see, the dataframe returned is sampled weekly. How can I get the same data going back 5 yrs, but daily?