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
- Host: GitHub
- URL: https://github.com/runthis/pydownload
- Owner: runthis
- Created: 2015-10-24T12:22:34.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-10-24T12:43:11.000Z (over 10 years ago)
- Last Synced: 2025-02-14T22:35:29.736Z (over 1 year ago)
- Language: Python
- Size: 137 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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()