I am attempting to download every instance of a hashtag (#Venture) using the R package rtweet` and am seeing a messaging indicating that the data is downloading but stopping at 16% with the progress bar unfinished. I understand the API limits a query to 18k tweets per 15 minute interval, but what is confusing me is that my R prompt
R>``` has returned as though the query has finished or aborted. Am I just being impatient or am I missing something?
I've tried to play around with the argument retryonratelimit = TRUE
; I've tried executing the query again. I've looked through a few tutorials and looked up the package documentation. I'm just confused why the Downloading progress bar quit only after 16% never to re-initiate or at least abort and throw an error message.
R> ## search for 250,000 tweets containing the word data
R> venture1 <- search_tweets(
+ "#venture", n = 200000, include_rts = FALSE, retryonratelimit = TRUE
+ )
Downloading [=====>-----------------------------------] 16%
R>