Created
November 24, 2009 21:01
-
-
Save hktechn0/242212 to your computer and use it in GitHub Desktop.
Test script of impersonation from ~ on twitter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
#-*- coding: utf-8 -*- | |
import twitter | |
#============================== | |
# Settings | |
USER = "" | |
PASS = "" | |
#============================== | |
api = twitter.Api(username = USER, password = PASS) | |
api.SetSource("movatwitter") | |
print "What are you doing?:", | |
postmsg = raw_input() | |
ret = api.PostUpdate(postmsg.decode("utf-8")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment