Skip to content

A Ruby downloader script with progress bar, retries, MIME type detection and ZIP file extraction.

License

Notifications You must be signed in to change notification settings

darkphantum/schiphol

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Schiphol

... is a smart downloader script for Ruby, with

  • Automatic file type resolution w/ MIMEs.
  • Progress bar for downloads, with ETA.
  • Downloads and extracts ZIP archives.
  • Automatically retry downloads N times.

Install

gem install schiphol

Usage

Basic

It can't get simpler.

require 'schiphol'

Schiphol.download('http://www.url.com/path/to/file.html')

Advanced

The options shown are the default values.

require 'schiphol'

Schiphol.download(
  'http://www.url.com/path/to/file.html',
  :download_folder => './my_downloads',
  :target_directory => '',
  :show_progress => true,
  :rectify_extensions => false,
  :max_tries => 3
)

License

This software is released under the GPL.

About

A Ruby downloader script with progress bar, retries, MIME type detection and ZIP file extraction.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 100.0%