我有我需要獲取的推文的具體狀態ID列表。 的tweepy文檔提供了以下內容:使用tweepy獲取具有特定狀態ID的推文
API.get_status(id)
Returns a single status specified by the ID parameter.
Parameters: id – The numerical ID of the status.
Return type: Status object
我不知道如何使用這個或找到任何的例子。 這甚至是正確的嗎?
我的ID列表是2240個條目,看起來是這樣的:從微博的「in_response_to_status_id」字段獲得
response_ids = [717289507981107201, 717289501337509888, ..., 716684885411237888]
這些ID,我已經有了(我想匹配我的微博到他們爲迴應而寫的推文)。
我基本上想寫類似
for id in response_ids:
tweet = API.get_status(id)
如何做到這一點,還是這個是否可行建議任何幫助,非常感謝。