Learn R Programming

downloader

This package provides a wrapper for the download.file function, making it possible to download files over https on Windows, Mac OS X, and other Unix-like platforms. The RCurl package provides this functionality (and much more) but can be difficult to install because it must be compiled with external dependencies. This package has no external dependencies, so it is much easier to install.

Example usage

This will download the source code for the downloader package:

# First install downloader from CRAN
install.packages("downloader")

library(downloader)
download("https://github.com/wch/downloader/zipball/master",
         "downloader.zip", mode = "wb")

Copy Link

Version

Install

install.packages('downloader')

Monthly Downloads

26,537

Version

0.4

License

GPL-2

Issues

Pull Requests

Stars

Forks

Maintainer

Last Published

July 9th, 2015

Functions in downloader (0.4)

download

Download a file, using http, https, or ftp
source_url

Download an R file from a URL and source it
sha_url

Download a file from a URL and find a SHA-1 hash of it
downloader

downloader: a package for making it easier to download files over https