This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## INSTALL TWEEPY MODULE | |
# Import tweepy | |
import tweepy | |
# api keys | |
consumer_key = "consumer key here" | |
consumer_secret = "consumer secret here" | |
access_token = "access token here" | |
access_token_secret = "access token secret here" |