I am trying to retrieve the count of replies for a particular tweet(using tweet.retweet_count). But I am getting attribute not found error. Seems this attribute is missing from the tweet object.But when I check in the documentation of tweet object, its listed and should have been available. Am I mssing something?
documentation - https://developer.twitter.com/en/docs/tweets/data-dictionary/overview/tweet-object
I am using python and following is my code:
for tweet in alltweets:
outtweets.append([tweet.id_str, tweet.created_at, tweet.text.encode("utf-8"),tweet.place,tweet.source,tweet.reply_count,tweet.retweet_count,tweet.favorite_count,tweet.retweeted,tweet.lang])
my outtweets list is empty :( tried with many tweets