Skip to main content

A tool to bulk download files from a FTP Server

Project description

FTPDownloader

DEPRACATED / NOT MAINTAINED I am only here for some downstream dependecies

This is a wrapper for "ftplib" to help bulk downloading directories on a FTP Server

Install

pip3 install git+https://git.connect.dzd-ev.de/dzdpythonmodules/ftpdownloader

How to use

from FTPDownloader import FTPDownloader

config = {
    "url": "ftp.ncbi.nlm.nih.gov",
    "port": 21,
    "user": "anonymous",
    "pw": "anonymous",
    "base_path": "/bioproject/Schema.v.1.2/",
    "dest_path": "/tmp/data/",
    "not_to_save_extentions": ["md5", "txt"],
    "overwrite_existing": True,
    "verify_file": True,
    "verify_throw_error_when_failed": True,
    "verify_fallback_to_size_comparison": False,
}
dl = FTPDownloader.from_config_dict(config)
# Optional list all files and dirs
dl.get_remote_file_list()
print(dl.list_ftp_directory())
# Download all files with a progress bar
dl.enable_progress_bar()
dl.download_all()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

FTPDownloader-1.3.0.tar.gz (15.6 kB view hashes)

Uploaded Source

Built Distribution

FTPDownloader-1.3.0-py3-none-any.whl (16.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page