コード例 #1
0
ファイル: ftp.py プロジェクト: lecorguille/biomaj
 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 = {}
コード例 #2
0
ファイル: ftp.py プロジェクト: pfem-bioinfo/biomaj
 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 = {}
コード例 #3
0
ファイル: localcopy.py プロジェクト: lecorguille/biomaj
 def __init__(self, rootdir):
     DownloadInterface.__init__(self)
     logging.debug('Download')
     self.rootdir = rootdir
コード例 #4
0
ファイル: localcopy.py プロジェクト: markiskander/biomaj
 def __init__(self, rootdir):
     DownloadInterface.__init__(self)
     logging.debug('Download')
     self.rootdir = rootdir
コード例 #5
0
ファイル: direct.py プロジェクト: markiskander/biomaj
 def __init__(self):
     DownloadInterface.__init__(self)
     self.downloaders = []
     self.files_to_download = []
コード例 #6
0
 def __init__(self):
     DownloadInterface.__init__(self)
     self.downloaders = []
     self.files_to_download = []