CODE:
#!/usr/bin/python
# -*- coding: utf-8 -*-
'''
Created on 2014-7-31
@author: guaguastd
@name: harvest_user_tweet.py
'''
if __name__ == '__main__':
# import json
import json
# import search
from search import search_for_tweet
# import harvest_user_timeline
from user import harvest_user_timeline
# import login, see https://blog.csdn.net/guaguastd/article/details/31706155
from login import twitter_login
# get the twitter access api
twitter_api = twitter_login()
# import twitter_text
import twitter_text
while 1:
query = raw_input('\nInput the query (eg. #MentionSomeoneImportantForYou, exit to quit): ')
if query == 'exit':
print 'Successfully exit!'
break
statuses = search_for_tweet(twitter_api, query)
ex = twitter_text.Extractor(statuses)
screen_names = ex.extract_mentioned_screen_names_with_indices()
screen_names = [screen_name['screen_name']
for screen_name in screen_names]
for screen_name in screen_names:
#print json.dumps(screen_names, indent=1)
tweets = harvest_user_timeline(twitter_api, screen_name=screen_name, max_results=200)
print json.dumps(tweets, indent=1)#!/usr/bin/python
# -*- coding: utf