Created
March 23, 2011 01:38
-
-
Save didip/882464 to your computer and use it in GitHub Desktop.
Unfollow everyone I follow
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/python | |
import twitter | |
twitter_username = 'you' | |
twitter_password = 'your_pass' | |
api = twitter.Api(username=twitter_username, password=twitter_password) | |
[api.DestroyFriendship(user) for user in api.GetFriends()] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
def help_need_friends_goldfish(username, password):
api = twitter.Api(username=username, password=password)
[api.DestroyFriendship(user) for user in api.GetFriends()]