Answers for "tweepy try"

0

tweepy try

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)
Posted by: Guest on July-13-2021

Browse Popular Code Answers by Language