Open In App

Python – API.unretweet() in Tweepy

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.

unretweet()

The API.unretweet() method of the API class in Tweepy module is used to un-retweet a retweeted tweet.

Syntax : API.unretweet(id)

Parameters :

  • id : The ID of the tweet which has to be un-retweeted.

Returns : an object of the class Status

Example 1 :Un-retweeting your own retweeted tween. Unretweet the following tweet :




# 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 ID of the tweet to be un-retweeted
ID = 
  
# un-retweeting the tweet
api.unretweet(ID)


Output :

Example 2 : Un-retweeting some other account’s retweeted tweet. Un-retweet the following tweet :

Obtaining the screen name, the number of replies and the number of retweets for the above tweet.




# the ID of the tweet to be un-retweeted
ID = 1263493041769394178
  
# un-retweeting the tweet
api.unretweet(ID)


Output :



Last Updated : 05 Jun, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads