I do not familiar with the pythonic programing, I want to get next page in a searching .when I execute
search_result = twitter.search.tweets(q=question,lang=“en”,count = count)
there are “search_metadata” in the search_result ,
“search_metadata”: {
“max_id”: 251079859537842177,
“since_id”: 0,
“refresh_url”: “?since_id=251079859537842177&q=search&include_entities=1”,
“next_results”: “?max_id=251079828361596927&q=search&include_entities=1”,
“count”: 15,
“completed_in”: 0.285,
“since_id_str”: “0”,
“query”: “search”,
“max_id_str”: “251079859537842177”
}
how can I get the next page with the next_results in the search_mettadata ??