Skip to content

Instantly share code, notes, and snippets.

@miguelgarcia
Created September 28, 2019 16:11
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save miguelgarcia/bd513d5deb0fd59b1404a86c146c8410 to your computer and use it in GitHub Desktop.
Save miguelgarcia/bd513d5deb0fd59b1404a86c146c8410 to your computer and use it in GitHub Desktop.
Script to unmute all muted accounts in twitter
import tweepy
# Install tweepy with `pip3 install tweepy`
# See https://realpython.com/twitter-bot-python-tweepy/ for info about how to generate credentials
consumer_key = ''
consumer_secret = ''
access_token = ''
access_token_secret = ''
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
api = tweepy.API(auth, wait_on_rate_limit=True, wait_on_rate_limit_notify=True)
api.verify_credentials()
for u in tweepy.Cursor(api.mutes).items():
print(f"Unmutting {u.screen_name}")
api.destroy_mute(u.id)
@tylerdurden4285
Copy link

What if I wanted it to do the opposite by muting all unmuted accounts (my goal is to mute every person in my twitter and just post without consuming, but keeping them as "friends")

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment