adding support for axel download manager

This commit is contained in:
vijayanand nandam 2015-08-06 22:42:58 +05:30
parent 47f53ad958
commit b41cd59547

View File

@ -82,6 +82,15 @@ class CurlFD(ExternalFD):
cmd += ['--', info_dict['url']]
return cmd
class AxelFD(ExternalFD):
def _make_cmd(self, tmpfilename, info_dict):
cmd = [self.exe, '-o', tmpfilename]
for key, val in info_dict['http_headers'].items():
cmd += ['-H', '%s: %s' % (key, val)]
cmd += self._configuration_args()
cmd += ['--', info_dict['url']]
return cmd
class WgetFD(ExternalFD):
def _make_cmd(self, tmpfilename, info_dict):