pb_download | R Documentation |
Download data from an existing release
pb_download( file = NULL, dest = ".", repo = guess_repo(), tag = "latest", overwrite = TRUE, ignore = "manifest.json", use_timestamps = TRUE, show_progress = getOption("piggyback.verbose", default = TRUE), .token = gh::gh_token() )
file |
name or vector of names of files to be downloaded. If |
dest |
name of vector of names of where file should be downloaded.
Can be a directory or a list of filenames the same length as |
repo |
Repository name in format "owner/repo". Will guess the current repo if not specified. |
tag |
tag for the GitHub release to which this data should be attached. |
overwrite |
Should any local files of the same name be overwritten?
default |
ignore |
a list of files to ignore (if downloading "all" because
|
use_timestamps |
DEPRECATED. |
show_progress |
logical, show a progress bar be shown for uploading?
Defaults to |
.token |
GitHub authentication token, see |
## Not run: ## Download a specific file. ## (dest can be omitted when run inside and R project) piggyback::pb_download("iris.tsv.gz", repo = "cboettig/piggyback-tests", dest = tempdir()) ## End(Not run) ## Not run: ## Download all files piggyback::pb_download(repo = "cboettig/piggyback-tests", dest = tempdir()) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.