當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Tweepy API.get_status()用法及代碼示例


Twitter是一種流行的社交網絡,用戶在其中共享稱為推文的消息。 Twitter允許我們使用Twitter API或Tweepy挖掘任何用戶的數據。數據將是從用戶提取的推文。首先要做的是從每個用戶都可以輕鬆獲得Twitter開發人員的使用者 key ,使用者 key ,訪問 key 和訪問 key 。這些 key 將幫助API進行身份驗證。

get_status()

API的API.get_status()方法APITweepy模塊中的class用於獲取狀態/tweet。

用法:API.get_status(parameters)

參數:

  • id:狀態的ID。
  • trim_user:一個布爾值,指示是否應提供用戶ID,而不是完整的用戶對象。默認值為False。

返回值:狀態類的對象



範例1:考慮以下推文:

# 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 = 
  
# obtaining the status 
status = api.get_status(ID) 
  
# printing the text of the status 
print("The text of the status is:" + status.text)

輸出:

The text of the tweet is:This is a tweet.

範例2:考慮以下推文:

獲取上述推文的屏幕名稱,回複數和轉發數。

# the ID of the status 
ID = 1265569813281280006
  
# obtaining the status 
status = api.get_status(ID) 
  
# printing the text of the status 
print("The text of the status is:\n\n" + status.text) 
  
# printing the screen name 
print("\nThe status was posted by:" + status.user.screen_name) 
  
# printing the number of likes 
print("The status has been liked " + str(status.favorite_count) + " number of times.") 
  
# printing the number of retweets 
print("The status has been retweeted " + str(status.retweet_count) + " number of times.")

輸出:

The text of the status is:

Apart from coding, what GEEKS are doing in quarantine?

Reply us...

#Quarantine #QuarantineLife #coding #programming

The status was posted by:geeksforgeeks
The status has been liked 25 number of times.
The status has been retweeted 3 number of times.




相關用法


注:本文由純淨天空篩選整理自Yash_R大神的英文原創作品 Python – API.get_status() in Tweepy。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。