def save_tweets(self, public_tweets):
     for tweet in public_tweets:
         User.from_tweepy(tweet.author)
         for u in tweet.entities['user_mentions']:
             User.from_dict(u, api.get_user)
         t = Tweet.from_tweepy(tweet)
         print t.text.encode('utf8')