Update examples/API_v2/lookup_tweets_using_tweet_ids.py
authorSuhem Parack <sparack@gmail.com>
Tue, 1 Mar 2022 22:57:38 +0000 (14:57 -0800)
committerGitHub <noreply@github.com>
Tue, 1 Mar 2022 22:57:38 +0000 (14:57 -0800)
Co-authored-by: Harmon <Harmon758@gmail.com>
examples/API_v2/lookup_tweets_using_tweet_ids.py

index 69e72477851771eb978e49436106d8f9f2c2f72c..5db1290971530da020eb56b5eb27cd267b8e1f1e 100644 (file)
@@ -16,6 +16,6 @@ tweets = client.get_tweets(ids, tweet_fields=["created_at"])
 
 # Print the Tweet text and the time the Tweet was created
 for tweet in tweets.data:
-    print(tweet)
+    print(tweet.text)
     print(tweet.created_at)
     
\ No newline at end of file