-
Notifications
You must be signed in to change notification settings - Fork 5.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
请问知乎回答现在可以正常采集吗 #534
Comments
类似问题,小红书 |
我的xhs也能正常运行 |
有开梯子🪜吗,如果有的话尝试关闭之后再试 |
大佬们有什么好的解决办法吗 |
试了一下午好像都不行,各种报错,这是ChatGPT给我的原因:
根据错误日志,主要的问题是 ReadTimeout 错误,这意味着程序在请求数据时超时未能获得响应。详细分析如下:
SSL/TLS 异常:在读取 SSL 数据时出现了 SSLWantReadError,这是一个常见的非阻塞错误,通常与网络连接、SSL 握手或数据读取延迟相关。然后程序尝试重新执行读取操作,但由于超时未能成功完成。
TimeoutError:在请求过程中发生了 TimeoutError,这表明请求超时。tenacity 库在重试多次后依然失败,最终抛出了 RetryError。
错误传播:这个超时错误在多个调用栈中传播,最后在 asyncio 的事件循环中导致了失败。
The text was updated successfully, but these errors were encountered: