VOOZH about

URL: https://www.geeksforgeeks.org/python/python-tweepy-checking-whether-a-tweet-has-been-liked-or-not/

⇱ Python Tweepy – Checking whether a tweet has been liked or not - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python Tweepy – Checking whether a tweet has been liked or not

Last Updated : 18 Jun, 2020
In this article we will see how we can check whether a tweet/status has been liked/favourited by the authenticated user or not. The favorited attribute of the Status object indicates whether the status has been favourited by the authenticated user or not. Identifying whether the status has been favourited by the authenticated user or not in the GUI : 👁 Image
In the above mentioned status, the heart icon is in red color, therefore the authenticated user has liked the tweet.
In order to check whether the status has been favourited by the authenticated user or not, we have to do the following :
  1. Identify the status ID of the status from the GUI.
  2. Get the Status object of the status using the get_status() method with the status ID.
  3. From this object, fetch the favorited attribute present in it.
Example 1 : Consider the following status : 👁 Image
We will use the status ID to fetch the status. The status ID of the above mentioned status is 1272771459249844224. Output :
The authenticated user has not liked the tweet.
Example 2 : Consider the following status : 👁 Image
We will use the status ID to fetch the status. The status ID of the above mentioned status is 1272479136133627905.
Output :
The authenticated user has liked the tweet.
Comment
Article Tags:
Article Tags: