Last active
December 15, 2022 13:57
-
-
Save dedunumax/91992ac6f1940be5d391 to your computer and use it in GitHub Desktop.
Remove all the followers from your twitter account.
This file contains 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
import tweepy | |
__author__ = 'dedunumax' | |
''' | |
This script will remove all the followers from your twitter account. For that first it will block user one by one and | |
then unblock them. If you are following your followers, you won't be subscribed to them anymore once you run this job. | |
Rub this script carefully. | |
Install tweepy module using pip. To install tweepy run below command in your terminal. | |
sudo pip install tweepy | |
Please replace consumer_key and consumer_secret. Visit https://apps.twitter.com to get your consumer_key and | |
consumer_secret. | |
Once you generate consumer key create an access token from same twitter page. Replace access_token and | |
access_token_secret with provided values. Then run the script. | |
''' | |
consumer_key = '<consumer_key>' | |
consumer_secret = '<consumer_secret>' | |
access_token = '<access_token>' | |
access_token_secret = '<access_token_secret>' | |
auth = tweepy.OAuthHandler(consumer_key, consumer_secret) | |
auth.set_access_token(access_token, access_token_secret) | |
api = tweepy.API(auth) | |
followers_list = api.followers_ids(api.me()) | |
for user in followers_list: | |
api.create_block(user) | |
api.destroy_block(user) | |
print user |
My updated version of this script, cause it didn't fully work for me. So if it doesn't work for anyone else either, here you go:
import tweepy
consumer_key = '<consumer_key>'
consumer_secret = '<consumer_secret>'
access_token = '<access_token>'
access_token_secret = '<access_token_secret>'
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
api = tweepy.API(auth)
followers = []
for page in tweepy.Cursor(api.get_follower_ids, screen_name="<You're screen name here>").pages():
followers.extend(page)
for user in followers:
api.create_block(user_id=user)
api.destroy_block(user_id=user)
print(user)
Thanks a lot! My example stopped working after few months.
You're welcome! That's what Open Source is for.
Hi could you update this with the new key issues?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can you add a line to remove accounts you follow, so that this only removes accounts that you havent followed ?