标签: python httplib httplib2
当我向某个网站发出GET请求时,我想禁用重定向的httplib2。这可能吗?
答案 0 :(得分:4)
禁用Http对象上的重定向:
Http
import httplib2 http = httplib2.Http() http.follow_redirects = False