This function retrieves batches of record (paging through results)
dblp_crawl(...)
Arguments
| ... |
Arguments passed on to dblp_search
querythe query string to search for, as described in https://dblp.org/faq/13501473.html, for example q=test+search
startthe "f"irst hit in the numbered sequence of search results to return. In combination with the h parameter, this parameter can be used for pagination of search results
nmaximum number of search results ("h"its) to return. For bandwidth reasons, this number is capped at 1000
cmaximum number of completion terms to return. For bandwidth reasons, this number is capped at 1000
api_configa configuration setting for the API including base URL etc, by default from config()
entityone of "publications", "authors" or "venues" where "publications" is default
|
Value
results records returned from the search
Examples
if (FALSE) {
dblp_crawl(query = "chip")
}