An open API service indexing awesome lists of open source software.

https://github.com/runthis/pydownload

PyDownload downloads all files from multiple hosts using FTP
https://github.com/runthis/pydownload

Last synced: about 1 year ago
JSON representation

PyDownload downloads all files from multiple hosts using FTP

Awesome Lists containing this project

README

          

#PyDownload

Using Python, download all files from several FTP sources

--PEP8 Compliant--

Example Usage:

hosts = ['domain01.com', 'domain02.com']
user = 'username'
password = 'secr3t'

for host in hosts:
Ftp(host, user, password).download()