我想用Pytrends获得最新的谷歌趋势。我已经安装了一个全新的系统,使用Python 3.10.1和Pytrends。代码很简单。
#pip install pytrends
from pytrends.request import TrendReq
pytrends = TrendReq.trending_searches(pn='US')
print(pytrends.head(20))
然而,我仍然得到这个错误信息。
TypeError: TrendReq.trending_searches() missing 1 required positional argument: 'self'
我在googeling上找不到任何帮助。你们有人知道这里的问题是什么吗?