Metadata-Version: 1.0
Name: fileDownloader.py
Version: 0.4.0
Summary: Downloads files via HTTP or FTP
Home-page: http://bantonj.wordpress.com/software/open-source/
Author: Joshua Banton
Author-email: bantonj@gmail.com
License: MIT
Download-URL: http://code.google.com/p/filedownload/downloads/list
Description: Intro
        
        This module is used for downloading files from the internet via http or ftp.
        
        It supports basic http authentication and ftp accounts, and supports resuming downloads. It does not support https or sftp at this time. The main advantage of this package is it's ease of use, and pure pythoness. It only uses the Python standard library, so no dependencies to deal with, and no C to compile.
        
        Usage
        
        If a non-standard port is needed just include it in the url (http://example.com:7632).
        
            Simple
        
                      downloader = fileDownloader.DownloadFile('http://example.com/file.zip')
                      downloader.download()
        
            Use full path to download
        
                     downloader = fileDownloader.DownloadFile('http://example.com/file.zip', "C:\Users\username\Downloads\newfilename.zip")
                     downloader.download()
        
            Password protected download
        
                     downloader = fileDownloader.DownloadFile('http://example.com/file.zip', "C:\Users\username\Downloads\newfilename.zip", ('username','password'))
                     downloader.download()
        
            Resume
        
                     downloader = fileDownloader.DownloadFile('http://example.com/file.zip')
                     downloader.resume()
Keywords: download
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
