首页 > 代码库 > Python 对Twitter中指定话题的被转载Tweet数量的频谱分析
Python 对Twitter中指定话题的被转载Tweet数量的频谱分析
CODE:
#!/usr/bin/python # -*- coding: utf-8 -*- ''' Created on 2014-7-10 @author: guaguastd @name: retweet_frequency_map.py ''' if __name__ == '__main__': # import visualize from visualize import visualize_frequency_map # pip install prettytable # from prettytable import PrettyTable # import search from search import search_for_tweet # import login, see http://blog.csdn.net/guaguastd/article/details/31706155 from login import twitter_login # get the twitter access api twitter_api = twitter_login() # import tweet from tweet import popular_retweets 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) retweets = popular_retweets(statuses) counts = [count for count, _, _ in retweets] sTitle = "Retweets" xLabel = "Bins (number of times retweeted)" yLabel = "Number of tweets in bin" visualize_frequency_map(counts, sTitle, xLabel, yLabel)
RESULT:
Input the query (eg. #MentionSomeoneImportantForYou, exit to quit): #MentionSomeoneImportantForYou Length of statuses 95 Input the query (eg. #MentionSomeoneImportantForYou, exit to quit):
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。