Skip to contents

Creates a tibble with the urls to the archived sources of a package

Usage

get_archived_sources(package)

Arguments

package

String. Name of the package to query

Value

A tibble of 4 columns, `name`, `url`, `last_modified`, `size`

Details

The returned table is the same as the html table that can be found in the CRAN archive url of a package, for instance https://cran.r-project.org/src/contrib/Archive/AER/. The `url` column is added to make it easier to download a source package. This function is used by `get_sources_for_selected_packages()`.

Examples