In this article we will see how we can check whether a tweet/status has been retweeted by the authenticated user or not. The retweeted attribute of the Status object indicates whether the status has been retweeted by the authenticated user or not.
Identifying whether the status has been retweeted by the authenticated user or not in the GUI :

In the above mentioned status, the retweet icon is in green color, therefore the authenticated user has retweeted the tweet.
In order to check whether the status has been retweeted by the authenticated user or not, we have to do the following :
- Identify the status ID of the status from the GUI.
- Get the Status object of the status using the
get_status()
method with the status ID.
- From this object, fetch the retweeted attribute present in it.
Example 1 : Consider the following status :

We will use the status ID to fetch the status. The status ID of the above mentioned status is 1272771459249844224.
import tweepy
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)
id = 1272771459249844224
status = api.get_status( id )
retweeted = status.retweeted
if retweeted = = True :
print ( "The authenticated user has retweeted the tweet." )
else :
print ( "The authenticated user has not retweeted the tweet." )
|
Output :
The authenticated user has not retweeted the tweet.
Example 2 : Consider the following status :

We will use the status ID to fetch the status. The status ID of the above mentioned status is 1272479136133627905.
id = 1272479136133627905
status = api.get_status( id )
retweeted = status.retweeted
if retweeted = = True :
print ( "The authenticated user has retweeted the tweet." )
else :
print ( "The authenticated user has not retweeted the tweet." )
|
Output :
The authenticated user has retweeted the tweet.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
18 Jun, 2020
Like Article
Save Article
Vote for difficulty