Updated formatting
authorSuhem Parack <sparack@twitter.com>
Tue, 1 Mar 2022 21:35:03 +0000 (13:35 -0800)
committerSuhem Parack <sparack@twitter.com>
Tue, 1 Mar 2022 21:35:03 +0000 (13:35 -0800)
examples/API_v2/get_liking_users.py
examples/API_v2/get_retweeters.py
examples/API_v2/get_users_followers.py
examples/API_v2/lookup_tweets_using_tweet_ids.py
examples/API_v2/lookup_users_using_user_ids.py

index 422f385bb5632ad8f28e2a8ed87ab40394daa30b..97214782f32ed9d0d5239e25a71c5e697cd32f9d 100644 (file)
@@ -10,8 +10,9 @@ client = tweepy.Client(bearer_token)
 # Replace Tweet ID
 id = 1441054496931541004
 
-# By default the user ID, name and username are returned. user_fields can be used 
-# to specify the additional user data that you want returned for each user e.g. profile_image_url
+# By default the user ID, name and username are returned. user_fields can be 
+# used to specify the additional user data that you want returned for each user
+# e.g. profile_image_url
 users = client.get_liking_users(id, user_fields=["profile_image_url"])
 
 # Print the username and the user's profile image url
index b2116aa2834b435897a302f710cace3f7a5da555..ade644c1eeaed251e9efa689703e3b362d762bda 100644 (file)
@@ -10,8 +10,9 @@ client = tweepy.Client(bearer_token)
 # Replace Tweet ID
 id = 1441054496931541004
 
-# By default the user ID, name and username are returned. user_fields can be used 
-# to specify the additional user data that you want returned for each user e.g. profile_image_url
+# By default the user ID, name and username are returned. user_fields can be 
+# used to specify the additional user data that you want returned for each user
+# e.g. profile_image_url
 users = client.get_retweeters(id, user_fields=["profile_image_url"])
 
 # Print the username and the user's profile image url
index 4554b06c92399bfba5197967343fb0852eab066c..cbdee6afc9b2ec4ece7d5a0e4f89335d15b1d9f6 100644 (file)
@@ -10,8 +10,9 @@ client = tweepy.Client(bearer_token)
 # Replace user ID
 id = 2244994945
 
-# By default the user ID, name and username are returned. user_fields can be used 
-# to specify the additional user data that you want returned for each user e.g. profile_image_url
+# By default the user ID, name and username are returned. user_fields can be 
+# used to specify the additional user data that you want returned for each user
+# e.g. profile_image_url
 users = client.get_users_followers(id, user_fields=["profile_image_url"])
 
 # Print the username and the user's profile image url
index ed76272b1c19dac59f80886ccb09485d97d1b412..69e72477851771eb978e49436106d8f9f2c2f72c 100644 (file)
@@ -10,8 +10,8 @@ client = tweepy.Client(bearer_token)
 # Replace Tweet IDs
 ids = ["1409935014725177344", "1409931481552543749", "1441054496931541004"]
 
-# By default the Tweet ID and Tweet text are returned. If you want additional fields, use the appropriate
-# fields and expansions
+# By default the Tweet ID and Tweet text are returned. If you want additional 
+# Tweet fields, specify those in tweet_fields
 tweets = client.get_tweets(ids, tweet_fields=["created_at"])
 
 # Print the Tweet text and the time the Tweet was created
index d285e748bc511275d32cdd306831e4c0b26772c6..e85395039fe2c3e2144763f07e358eb25a8198f9 100644 (file)
@@ -10,8 +10,9 @@ client = tweepy.Client(bearer_token)
 # Replace User IDs
 ids = ['2244994945']
 
-# By default the user ID, name and username are returned. user_fields can be used 
-# to specify the additional user data that you want returned for each user e.g. profile_image_url
+# By default the user ID, name and username are returned. user_fields can be 
+# used to specify the additional user data that you want returned for each user
+# e.g. profile_image_url
 users = client.get_users(ids, user_fields=["profile_image_url"])
 
 # Print the username and the user's profile image url