I have a list of urls in a character vector and I want to pause the process between queries because if not the x queries is rejected.
urls=c('url1','url2','url3')
here is want I want to do
htmlpages=lapply(urls,function(x) readLines(x) Sys.sleep(0.3))
As Justin suggested, formatting is the key.
htmlpages = lapply(
urls,
function(x)
{
y <- readLines(x)
Sys.sleep(0.3)
y
}
)
Update: functionality for waiting between calls is now built into purrr.
library(purrr)
slow_readLines <- slowly(readLines, rate = rate_delay(0.3))
lapply(urls, slow_readLines)
or for a full purrr solution
library(purrr)
slow_readLines <- slowly(readLines, rate = rate_delay(0.3))
urls %>% map(slow_readLines)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With