如何设置搜索词的子类别 Google Trends - Pytrends
How to set the sub category of search term Google Trends - Pytrends
我正在尝试使用 Pytrends Google Trends pytrends1.interest_over_time()
获取结果 pytrends1.interest_over_time()
有些术语有时对应于常规搜索词与特定类别,如 Peaky Blinders(作为搜索词与英国戏剧系列),我想在那里获取英国戏剧系列的结果。我也观察到了 URL 模式,当在通用搜索与子类别之间切换时,它的编码如下:
常规搜索词:
https://trends.google.com/trends/explore?q=peaky%20blinders&geo=IN
英国电视节目:
https://trends.google.com/trends/explore?geo=IN&q=%2Fm%2F0ql2gt3
如何传递我想要的英国戏剧系列的 Pytrends API 调用?
在 pytrends documentation 中,有一节讨论“高级关键字”,这似乎是您想要的。还有一些关于为您的搜索词提取正确类别的信息,尽管看起来您需要在单独的脚本中执行此操作,然后才能将类别添加到您的主程序。
我正在尝试使用 Pytrends Google Trends pytrends1.interest_over_time()
获取结果 pytrends1.interest_over_time()
有些术语有时对应于常规搜索词与特定类别,如 Peaky Blinders(作为搜索词与英国戏剧系列),我想在那里获取英国戏剧系列的结果。我也观察到了 URL 模式,当在通用搜索与子类别之间切换时,它的编码如下:
常规搜索词: https://trends.google.com/trends/explore?q=peaky%20blinders&geo=IN
英国电视节目: https://trends.google.com/trends/explore?geo=IN&q=%2Fm%2F0ql2gt3
如何传递我想要的英国戏剧系列的 Pytrends API 调用?
在 pytrends documentation 中,有一节讨论“高级关键字”,这似乎是您想要的。还有一些关于为您的搜索词提取正确类别的信息,尽管看起来您需要在单独的脚本中执行此操作,然后才能将类别添加到您的主程序。