I am trying to access the search feature of the twitter api through a python wrapper for the api named tweepy. I have the following code:
import tweepy as t
auth = t.OAuthHandler(consumer_key,consumer_secret,access_token_key,access_token_secret)
api = t.API(auth)
api.search(q='#somepopularhashtag')
The output that I receive is an empty list as opposed to a list of twitter.status objects supposed to be returned. Could anyone help me out with this problem. I am using tweepy 2.0