gpt4 book ai didi

python - 如何在 urllib2.URLError 上打印响应正文?

转载 作者:可可西里 更新时间:2023-11-01 16:18:05 27 4
gpt4 key购买 nike

在我创建的脚本中,我将大量数据发布到 REST API。

该脚本非常模块化,在顶层某处我捕获了 URLError。我需要知道响应正文中的内容,因为其中会有一条错误消息。

是否有我可以使用的 URLError 方法?

    try:
(calling some function that throws URLError)
except urllib2.URLError, e:
print "Error: " + str(e.body_or_something)

最佳答案

是的。您可以通过 e.readlines() 访问响应:

    try:
(calling some function that throws URLError)
except urllib2.URLError, e:
print e.readlines()

关于python - 如何在 urllib2.URLError 上打印响应正文?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25626685/

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