Install
pip install tweepy
Setup Twitter Developer Account: https://developer.twitter.com/en/apply-for-access
import tweepyauth = tweepy.OAuthHandler(TWITTER_CONSUMER_API_KEY, TWITTER_CONSUMER_API_SECRET)# auth.set_access_token(access_token, access_token_secret)api = tweepy.API(auth)tweet_id = '20'result = api.get_status(tweet_id)date = result.created_at.strftime('%Y-%m-%d %H:%M:%S')
References: