#' Use manners in your own package or script
#'
#' Creates collection of `polite` functions for scraping and downloading
#'
#' @param save_as File where function should be created Defaults to "`R/polite-scrape.R`"
#' @param open if `TRUE`, open the resultant files
#' @importFrom usethis use_template
#' @export
use_manners <- function(save_as="R/polite-scrape.R", open = TRUE) {
save_as_directory <- dirname(save_as)
if (! dir.exists(save_as_directory)) {
dir.create(save_as_directory)
}
usethis::use_template("polite_template.R", save_as = save_as,
open = open, package = "polite")
invisible()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.