2 from twitter_authentication import CONSUMER_KEY, CONSUMER_SECRET, ACCESS_TOKEN, ACCESS_TOKEN_SECRET
4 auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
5 auth.set_access_token(ACCESS_TOKEN, ACCESS_TOKEN_SECRET)
9 user = api.get_user('makoshark')
11 print user.screen_name + " has " + str(user.followers_count) + " followers."
13 print "They include these 100 people:"
15 for friend in user.friends(count=100):
16 print friend.screen_name