我正在尝试从加载的字典中获取排序列表或用户表。我能够按如下方式打印它们,但我不知道如何根据示例中用户名发出的推文数量按降序对它们进行排序。如果我能够做到这一点,我可能会弄清楚如何跟踪用户。谢谢!
tweets = urllib2.urlopen("http://search.twitter.com/search.json?q=ECHO&rpp=100")
tweets_json = tweets.read()
data = json.loads(tweets_json)
for tweet in data['results']:
... print tweet['from_user_name']
... print tweet['to_user_name']
... print