Guest User

Untitled

a guest
Apr 25th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #!/usr/bin/env python
  2. #-*- coding: utf-8 -*-
  3.  
  4. import twitter
  5.  
  6. #==============================
  7. # Settings
  8. USER = ""
  9. PASS = ""
  10. #==============================
  11.  
  12. api = twitter.Api(username = USER, password = PASS)
  13. api.SetSource("movatwitter")
  14.  
  15. print "What are you doing?:",
  16. postmsg = raw_input()
  17. ret = api.PostUpdate(postmsg.decode("utf-8"))
Add Comment
Please, Sign In to add comment