Guest User

Untitled

a guest
May 16th, 2018
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. import twitter
  2.  
  3. api = twitter.Api(username='Sirupsen', password='seekrit')
  4.  
  5. # For each entry, write it out!
  6. for s in api.GetFriendsTimeline():
  7. print '\033[94m' + s.user.name + '\033[0m'
  8. print s.text, '\n\n'
Add Comment
Please, Sign In to add comment