Skip to content

Instantly share code, notes, and snippets.

@didip
Created March 23, 2011 01:38
Show Gist options
  • Save didip/882464 to your computer and use it in GitHub Desktop.
Save didip/882464 to your computer and use it in GitHub Desktop.
Unfollow everyone I follow
#!/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()]
@vanzazzle
Copy link

def help_need_friends_goldfish(username, password):
api = twitter.Api(username=username, password=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