Is there a way to restore tweety activity using tweepy

Is there a way to extract the activity of tweets (Impressions, Total tasks) of my own tweets using tweepy (or maybe any other Twitter library for python).

I am using this simple code, but I could not find a way to extract the activity of the tweet:

import tweepy auth = tweepy.OAuthHandler(consumer_key, consumer_secret) auth.set_access_token(access_token, access_token_secret) api = tweepy.API(auth) 
+5
source share

All Articles