Example #1
0
 def __init__(self, protocol, host, rootdir):
     DownloadInterface.__init__(self)
     logging.debug('Download')
     self.crl = pycurl.Curl()
     url = protocol + '://' + host
     self.rootdir = rootdir
     self.url = url
     self.headers = {}
Example #2
0
 def __init__(self, protocol, host, rootdir):
     DownloadInterface.__init__(self)
     logging.debug('Download')
     self.crl = pycurl.Curl()
     url = protocol+'://'+host
     self.rootdir = rootdir
     self.url = url
     self.headers = {}
Example #3
0
 def __init__(self, rootdir):
     DownloadInterface.__init__(self)
     logging.debug('Download')
     self.rootdir = rootdir
Example #4
0
 def __init__(self, rootdir):
     DownloadInterface.__init__(self)
     logging.debug('Download')
     self.rootdir = rootdir
Example #5
0
 def __init__(self):
     DownloadInterface.__init__(self)
     self.downloaders = []
     self.files_to_download = []
Example #6
0
 def __init__(self):
     DownloadInterface.__init__(self)
     self.downloaders = []
     self.files_to_download = []