Skip to content

Instantly share code, notes, and snippets.

@miguelgarcia
Created September 28, 2019 16:11
Embed
What would you like to do?
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