如何获取最新更新Twitter API

时间:2016-07-22 02:39:58

标签: python twitter tweepy

如何在Twitter上获取最后状态更新时间?使用python和tweepy

请帮助

1 个答案:

答案 0 :(得分:0)

这些是我用来从我的个人Twitter账户使用Python阅读推文的命令。我希望您可以使用它来阅读Twitter的最新状态更新。

#Import the necessary methods from tweepy library
from tweepy.streaming import StreamListener
from tweepy import OAuthHandler
from tweepy import Stream

#Variables that contains the user credentials to access Twitter API 
access_token = "ENTER YOUR ACCESS TOKEN"
access_token_secret = "ENTER YOUR ACCESS TOKEN SECRET"
consumer_key = "ENTER YOUR API KEY"
consumer_secret = "ENTER YOUR API SECRET"


#This is a basic listener that just prints received tweets to stdout.
class StdOutListener(StreamListener):

def on_data(self, data):
    print data
    return True

def on_error(self, status):
    print status


if __name__ == '__main__':

#This handles Twitter authetification and the connection to Twitter Streaming API
l = StdOutListener()
auth = OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
stream = Stream(auth, l)

#This line filter Twitter Streams to capture data by the keywords: 'python'
stream.filter(track=['python'])
相关问题