Download Documents
Arguments
- query
An object of class
HALQuery(typically returned byhal_query()).- ...
Currently not used.
- destination
A
characterstring giving the directory path where the downloaded files are to be saved.- limit
An
integergiving the maximum number of results. According to HAL policy, it cannot exceed 10000.- start
An
integerspecifying an absolute offset in the complete sorted list of matches to be used as the beginning of the current page. Only used ifcursorisFALSE.- progress
A
logicalscalar: should a progress bar for for the request be printed?- verbose
A
logicalscalar: should extra information be reported?
See also
Other search tools:
hal_search()
Examples
if (FALSE) { # \dontrun{
## Download the 10 most recent archaeological publication
## (if any files)
hal_query("archéologie") |>
hal_filter("ART" %IN% "docType_s") |>
hal_sort("producedDate_tdate", decreasing = TRUE) |>
hal_download(limit = 10)
} # }