Pytrends错误:on_status失败,TrendReq.trending_searches()缺少1个必要的位置参数:'self'

0 人关注

我想用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上找不到任何帮助。你们有人知道这里的问题是什么吗?

python
Forelli
Forelli
发布于 2021-12-08
1 个回答
Forelli
Forelli
发布于 2021-12-09
已采纳
0 人赞同

我已经为自己找到了一个解决方案。通过Pytrends的github页面上的例子。

from pytrends.request import TrendReq
pytrend = TrendReq()