I wish to obtain tweets of a particular hashtag from a a particular location say Chennai for analysing data. I\'m really new to Twitter API and tweepy. I found that the search u
You need to use the geocode
parameter in Tweepy. Using the lat/long/radius from your search URL, your cursor should be defined like so:
tweepy.Cursor(api.search, q='cricket', geocode="-22.9122,-43.2302,1km").items(10)
See the Tweepy API.search
documentation for more information on the parameters you can include in your search.