📜  tweepy try - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:57.638000             🧑  作者: Mango

代码示例1
import tweepy

auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)

api = tweepy.API(auth)

public_tweets = api.home_timeline()
for tweet in public_tweets:
    print(tweet.text)