gpt4 book ai didi

python - 在 python 中捕获 pytrends.exceptions.ResponseError 时出错

转载 作者:太空宇宙 更新时间:2023-11-03 15:40:00 25 4
gpt4 key购买 nike

我正在 try catch google 在将您锁定在 pytrends 中的服务器之外时抛出的异常。

这是我收到的确切错误消息:

  File "/usr/local/lib/python3.7/site-packages/pytrends/request.py",     line 101, in _get_data
'response with code {0}.'.format(response.status_code), response=response)
pytrends.exceptions.ResponseError: The request failed: Google returned a response with code 429.

我尝试运行 except pytrends.exceptions.ResponseError: 但是当我这样做时我得到一个属性错误 AttributeError: 'TrendReq' object has no attribute 'exceptions'

如果有人知道如何捕获它,那将是非常好的,谢谢!

最佳答案

导入错误:

from pytrends.exceptions import ResponseError

然后你就可以捕获它了:

try:
pass # normal behaviour
except ResponseError:
pass # treat your error

关于python - 在 python 中捕获 pytrends.exceptions.ResponseError 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53134309/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com