I'm trying to use urlretrieve to download files from urls that take the form:
http://example.com/download.php?id=6456&name=foo
yet for some reason I just get an empty response.
I've tried the method suggested in this question didn't seem to help because
remotefile.info()
doesn't contain the key 'content-disposition', only
['content-length', 'x-powered-by', 'refresh', 'server', 'connection', 'date', 'content-type']
Any suggestions?