标签: python http urlopen
我使用了Python的urllib2.urlopen并从服务器获得了500错误。如何找到错误的文本?我希望它有有用的信息。
urllib2.urlopen
答案 0 :(得分:4)
from urllib2 import urlopen, HTTPError try: f = urlopen(url) except HTTPError, e: print(e.read())