2017-04-16 67 views
1

我正在使用Python API,並且我想從Twitter中檢索最受歡迎的推文,而無需進行特定的查詢。我想要所有受歡迎的推文,而不僅僅是那些與特定搜索字詞相關的推文。如何獲得最受歡迎的推文而無需查詢?

api = twitter_connect() 

for tweet in tweepy.Cursor(api.search, q='query',result_type='popular').items(5): 
    print(tweet.text) 

不幸的是,在Twitter API中,query參數是必需的。如何獲取獨立於搜索查詢的最受歡迎的推文?

+0

你的問題沒有意義。 *如何查詢哪些推文最受歡迎而沒有詢問哪些推文最受歡迎?*不是問題。 –

回答

1

您可能想嘗試Twitter API trends/place端點。從該文檔:

trends/place 返回頂部50趨勢主題特定WOEID (Yahoo! Where On Earth ID)

trends1 = api.trends_place(1) # Global information is available by using 1 as the WOEID . 
data = trends1[0] 
trends = data['trends'] 

for trend in trends[0:5]: # Get only the first 5 popular trending tweets 
    print trend 

輸出(例如,在此張貼的時間):

{u'url': u'http://twitter.com/search?q=%23GagaCoachella', u'query': u'%23GagaCoachella', u'tweet_volume': 83882, u'name': u'#GagaCoachella', u'promoted_content': None} 
{u'url': u'http://twitter.com/search?q=%23FallonStylesSNL', u'query': u'%23FallonStylesSNL', u'tweet_volume': 538109, u'name': u'#FallonStylesSNL', u'promoted_content': None} 
{u'url': u'http://twitter.com/search?q=%22Happy+Easter%22', u'query': u'%22Happy+Easter%22', u'tweet_volume': 485731, u'name': u'Happy Easter', u'promoted_content': None} 
{u'url': u'http://twitter.com/search?q=%23Bug%C3%BCnHay%C4%B1r%C3%87%C4%B1kacak', u'query': u'%23Bug%C3%BCnHay%C4%B1r%C3%87%C4%B1kacak', u'tweet_volume': 25544, u'name': u'#Bug\xfcnHay\u0131r\xc7\u0131kacak', u'promoted_content': None} 
{u'url': u'http://twitter.com/search?q=%23JavierDuarte', u'query': u'%23JavierDuarte', u'tweet_volume': 67939, u'name': u'#JavierDuarte', u'promoted_content': None} 

請參閱documentation獲取更多選項來自定義查詢。