Open In App

Python – API.destroy_friendship() 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_friendship()

The destroy_friendship() method of the API class in Tweepy module is used to destroy a friendship (unfollow) between the authenticated user and the target user.

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

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 the class User

Example 1 : Destroying friendship using the screen name. Consider the following account :




# 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)
  
# screen name of the account to be unfollowed
screen_name = "geeksforgeeks"
  
# destroying the friendship
api.destroy_friendship(screen_name)


Output :

Example 2 : Destroying friendship using the user id. Consider the following account :




# user id of the account to be unfollowed
user_id = 103770785
  
# destroying the friendship
api.destroy_friendship(user_id)


Output :

The user id 57741058 corresponds to the user with the name : GeeksforGeeks

The screen name geeksforgeeks corresponds to the user with the name : GeeksforGeeks

Output :



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

Similar Reads