I am using Tweepy library for the Twitter API. My purpose is getting data per hour for a day. For example, 08.19.2019 17.00 - 18.00. This is the time range. And i want to access all tweets at this time range.
search_words = 'bitcoin -filter:retweet'
date_since = '2019-08-15'
date_until = '2019-08-16'
tweets = tw.Cursor(api.search,
q=search_words,
lang="en",
since = date_since,
until = date_until).items(100)
There is some parameters like date_since, date_until. How can I do this hourly?