Skip to content

Commit

Permalink
small refix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Oct 22, 2018
1 parent 04ef2db commit 6c3349f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions botTweet.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
from random import randint

#enter the corresponding information from your Twitter application:
CONSUMER_KEY = '7sBpXnfnRTmYp47GZWSWvy5i7'#keep the quotes, replace this with your consumer key
CONSUMER_SECRET = 'JdznzrORLwtuuT9a41v0pADK8clNuh8JOMPHTrpZ61GetxkbeJ'#keep the quotes, replace this with your consumer secret key
ACCESS_KEY = '998574665969950722-QsEXMg0sUcx4tUi9qhyCQxKtLuciPa5'#keep the quotes, replace this with your access token
ACCESS_SECRET = '6LXmWt2IRmXyRQ82nsfiqxpgrDEmsJ3LcSyKL7LSvcKnL'#keep the quotes, replace this with your access token secret
CONSUMER_KEY = ''#keep the quotes, replace this with your consumer key
CONSUMER_SECRET = ''#keep the quotes, replace this with your consumer secret key
ACCESS_KEY = ''#keep the quotes, replace this with your access token
ACCESS_SECRET = ''#keep the quotes, replace this with your access token secret
auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
auth.set_access_token(ACCESS_KEY, ACCESS_SECRET)
api = tweepy.API(auth)
Expand Down

0 comments on commit 6c3349f

Please sign in to comment.