Nothing
#' Extract links of all downloadable files on a webpage
#'
#' @param url url of the webpage that you intend to download files.
#' @return web addresses of all downloadable files
#' @importFrom magrittr %>%
#' @importFrom lifecycle deprecate_warn
#' @author Thiyanga S Talagala
#' @export
get_addresses <- function(url){
#warning("`get_addresses()` is deprecated and will be removed in a future version. Please use `get_pdflinks()` instead.", call. = FALSE)
deprecate_warn("2.0.0", "get_addresses()", "get_pdflinks_srilanka()")
page <- xml2::read_html(url)
all.web.addresses <- page %>%
rvest::html_nodes("a") %>% # find all links
rvest::html_attr("href") %>% # get the url
stringr::str_subset("\\.pdf") # extract urls of the
return(all.web.addresses)
}
#'@examples
#'ad.list <- get_addresses("http://www.epid.gov.lk/web/index.php?option=com_content&view=article&id=148&Itemid=449&lang=en")
#'ad.list
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.