Open In App

Python – API.destroy_mute() in Tweepy

Last Updated : 08 Jun, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

Twitter is a popular social network where users share messages called tweets. Twitter allows us to mine the data of any user using Twitter API or Tweepy. The data will be tweets extracted from the user. The first thing to do is get the consumer key, consumer secret, access key and access secret from twitter developer available easily for each user. These keys will help the API for authentication.

API.destroy_mute()

The destroy_mute() method of the API class in Tweepy module is used to un-mute a muted user as the authenticated user.

Syntax : API.destroy_mute(id / screen_name / user_id)

Parameters : Only use one of the 3 options:

  • id : specifies the ID or the screen name of the user.
  • user_id : specifies the ID of the user, useful to differentiate accounts when a valid user ID is also a valid screen name.
  • screen_name : specifies the screen name of the user, useful to differentiate accounts when a valid screen name is also a user ID.

Returns : an object of class User

Example 1 : Consider the following user :




# import the module
import tweepy
  
# assign the values accordingly
consumer_key = ""
consumer_secret = ""
access_token = ""
access_token_secret = ""
  
# authorization of consumer key and consumer secret
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
  
# set access to user's access key and access secret 
auth.set_access_token(access_token, access_token_secret)
  
# calling the api 
api = tweepy.API(auth)
  
# the screen name of the user
screen_name = "geeksforgeeks"
  
# un-muting the user
api.destroy_mute(screen_name)


Output :

Example 2 : Checking if the user has been un-muted or not by the destroy_mute() method.




# ID of the user
id = 4802800777
  
print("Before using the destroy_mute() method : ")
if api.show_friendship(target_id = id)[0].muting == True:
    print("The user has been muted by the authenticated user.")
else:
    print("The user has not been muted by the authenticated user.")
  
# un-muting the user
api.destroy_mute(id)
  
print("\nAfter using the destroy_mute() method : ")
if api.show_friendship(target_id = id)[0].muting == True:
    print("The user has been muted by the authenticated user.")
else:
    print("The user has not  been muted by the authenticated user.")


Output :

Before using the destroy_mute() method : 
The user has been muted by the authenticated user.

After using the destroy_mute() method : 
The user has not been muted by the authenticated user.


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads