Twitter API – Python , searching for tweet by date
# Initiate the connection to Twitter twitter = Twitter(auth=oauth) # Search for latest tweets about "pakistan" results = twitter.search.tweets(q='pakistan',until=2008 - 08 - 19, ) print results I am trying to retrieve tweets that are earlier than this date by one…