📜  Python Tweepy – 获取推文被收藏的次数

📅  最后修改于: 2022-05-13 01:54:26.585000             🧑  作者: Mango

Python Tweepy – 获取推文被收藏的次数

在本文中,我们将了解如何获取推文/状态被收藏的次数。 Status 对象的 favorite_count 属性为我们提供了一条推文被收藏的次数。

确定推文在 GUI 中被收藏的次数:

上述状态已被收藏 16 次。

示例 1:考虑以下状态:

我们将使用状态 ID 来获取状态。上述状态的状态 ID 为 1272771459249844224。

# 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 status
id = 1272771459249844224
  
# fetching the status
status = api.get_status(id)
  
# fetching the favorite_count attribute
favorite_count = status.favorite_count
  
print("The number of time the status has been favourited is : " + str(favorite_count))

输出 :

The number of time the status has been favourited is : 17

示例 2:考虑以下状态:

我们将使用状态 ID 来获取状态。上述状态的状态 ID 为 1272479136133627905。

# the ID of the status
id = 1272479136133627905
  
# fetching the status
status = api.get_status(id)
  
# fetching the favorite_count attribute
favorite_count = status.favorite_count
  
print("The number of time the status has been favourited is : " + str(favorite_count))

输出 :

The number of time the status has been favorited is : 19