Thursday, September 4, 2025
HomeLanguagesPython – API.retweets_of_me() in Tweepy

Python – API.retweets_of_me() in Tweepy

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.retweets_of_me()

The retweets_of_me() method of the API class in Tweepy module is used to get the 20 most recent tweets of the authenticated user that have been retweeted by others.

Syntax : API.retweets_of_me(parameters)

Parameters :

  • since_ids : Fetch only the statuses newer than the specified ID.
  • max_ids : Fetch only the statuses older than or equal to the specified ID.
  • count : The number of statuses to be fetched, the default value is 20.

Returns : a list of objects of the class Status

Example 1 : Using the retweets_of_me() method without any parameters.




# 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)
  
# fetching the retweets
statuses = api.retweets_of_me()
  
print(str(len(statuses)) + " number of statuses have been retweeted.")


Output :

20 number of statuses have been retweeted.

Example 2: Using the retweets_of_me() method with the count parameter to fetch only a specified number of retweets.




# screen name of the account to be fetched
screen_name = "neveropen"
  
# number of statuses to be fetched
count = 3
  
# fetching the retweets
statuses = api.retweets_of_me(count = count)
  
print(str(len(statuses)) + " number of statuses have been retweeted.")


Output :

3 number of statuses have been retweeted.
Last Updated :
05 Jun, 2020
Like Article
Save Article

<!–

–>

Similar Reads
Related Tutorials
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32261 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6626 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11855 POSTS0 COMMENTS
Shaida Kate Naidoo
6747 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6695 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS