Skip to content

Instantly share code, notes, and snippets.

View ArjunDandagi's full-sized avatar
🏠
Working from home

Arjun Dandagi ArjunDandagi

🏠
Working from home
View GitHub Profile
@ArjunDandagi
ArjunDandagi / follow_n_people.py
Last active October 12, 2020 18:03
Follow 101 COOL DevOps account in twitter - tweepy
import tweepy
class TwitterFollow(object):
def __init__(self):
consumer_key = "GYYNimu/ExAMPLE/"
consumer_secret = "QYRC39S84T8zycck2/EXAMPLE/"
access_token = "417735939-tfBA/EXAMPLE/"
access_token_secret = "59kGZexvIRJE/EXAMPLE/"
auth = tweepy.OAuthHandler(consumer_key,consumer_secret)
auth.set_access_token(access_token,access_token_secret)