我正在尝试使用mechanize上传大文件。文件大小> 450 MB。
我能够使用mechanize并成功上传了5 MB的文件。 这是我的代码:
web = mechanize.Browser()
web.open("http://x.om/")
web._factory.is_html = True
web.form = formObj[1]
web.set_all_readonly(False)
web.form.add_file(open(self.Location, 'rb'), 'application/octet-stream', filename, nr=0, name='file[]')
response = web.submit()
如果我能在获取大文件方面获得帮助,我将很高兴。