Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
master_project_JLU2018/bin/3.1_create_gtf/Modules/Ensembl/FTPHandling/URLRetrieve.py
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
40 lines (29 sloc)
1.19 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ftplib | |
from Modules.Ensembl.FTPHandling.FTPEntry import FTPEntry | |
class FTPHandler: | |
""" | |
Class to browse through ftp folders and download entries to local file | |
""" | |
def __init__(self, url, wd): | |
self.ftp = ftplib.FTP(url) | |
self.ftp.login() | |
self.ftp.cwd(wd) | |
def change_dir(self, wd): | |
self.ftp.cwd(wd) | |
def get_all_entries(self): | |
return self.ftp.nlst() | |
def get_all_entries_from_dir(self, dire): | |
self.change_dir(dire) | |
return self.get_all_entries() | |
def get_all_entries_as_FTPEntry(self): | |
# Get All Files | |
files = self.ftp.nlst() | |
return [FTPEntry(item, self.ftp, self.ftp.pwd()) for item in files] | |
def save_entries_to_file(self, origin, target): | |
self.change_dir(origin) | |
for file in self.get_all_entries_as_FTPEntry(): | |
if file.gettype() == "f": | |
# Download only Checksum & gff.gz files | |
if file.getfilename() not in ["README", "manifest.tsv"]: | |
print("Downloading....... > " + file.getfilename()) | |
self.ftp.retrbinary("RETR " + file.getfilename(), open(target + "/" + file.getfilename(), 'wb').write) | |