import tweepyckey = 'code'csecret = 'code'atoken = 'code'asecret = 'code'auth = tweepy.OAuthHandler(ckey, csecret)auth.set_access_token(atoken, asecret)api = tweepy.API(auth)locations=[-77.03556429999999, 38.896661, -77.0375643, 38.898661]results = api.search(locations)for result in results:print result.text
See the docs for more info: https://dev.twitter.com/docs/api/1.1/get/search/tweets