我正在尝试使用urlretrieve从采用以下格式的网址下载文件:
http://example.com/download.php?id=6456&name=foo
但由于某种原因,我只是得到一个空洞的回应。
我已尝试this question中建议的方法似乎没有帮助,因为
remotefile.info()
不包含关键字'content-disposition',只包含
['content-length', 'x-powered-by', 'refresh', 'server', 'connection', 'date', 'content-type']
有什么建议吗?
答案 0 :(得分:1)
来自manual的信息:
info() - 返回元信息 的页面,如标题,在 httplib.HTTPMessage的形式 实例(请参阅HTTP快速参考 头)
你在dict remotefile.info()中有什么关键?
您能获得完整的标题信息吗?