![]() |
强悍的台灯 · SQL、Pandas和Spark:常用数据查 ...· 5 月前 · |
![]() |
一身肌肉的镜子 · 基于pyQt的按键响应程序,实现按下按键进行 ...· 1 年前 · |
![]() |
兴奋的脆皮肠 · Android 时间类型字符串比较大小 - 简书· 1 年前 · |
我正在使用Pytrends来提取Google趋势数据,例如:
from pytrends.request import TrendReq
pytrend = TrendReq()
pytrend.build_payload(kw_list=['bitcoin'], cat=0, timeframe=from_date+' '+today_date)
并返回一个错误:
ResponseError: The request failed: Google returned a response with code 429.
我昨天做的,但由于某种原因,它现在不能工作!来自github的源代码也失败了:
pytrends = TrendReq(hl='en-US', tz=360, proxies = {'https': 'https://34.203.233.13:80'})
我该如何解决这个问题呢?非常感谢!
这一次花了一段时间,但事实证明,这个库只是需要更新。你可以查看我在这里发布的一些方法,这两种方法都产生了状态429响应:
https://github.com/GeneralMills/pytrends/issues/243
最终,通过在bash提示符下运行以下命令,我能够让它再次工作:
运行:
pip install --upgrade --user git+https://github.com/GeneralMills/pytrends
获取最新版本。
希望这对你也有效。
编辑:
如果你不能从源代码升级,你可能会有一些运气:
pip install pytrends --upgrade
此外,如果是在Windows上,请确保您是以管理员身份运行git。
通过pip install运行升级命令后,您应该重新启动python内核并重新加载pytrend库。
即使在使用
pip install --upgrade --user git+https://github.com/GeneralMills/pytrends
更新模块并重新启动python之后,我也遇到了同样的问题。
但是,通过以下方法解决了这个问题:
而不是
pytrends = TrendReq(hl='en-US', tz=360, timeout=(10,25), proxies=['https://34.203.233.13:80',], retries=2, backoff_factor=0.1, requests_args={'verify':False})
只是跑了一下:
pytrend = TrendReq()
希望这能对大家有所帮助!
Copyright © 2013 - 2023 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号: 粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
扫码关注腾讯云开发者
领取腾讯云代金券
![]() |
兴奋的脆皮肠 · Android 时间类型字符串比较大小 - 简书 1 年前 |