Open In App

Python Tweepy – Getting the name of a user

Last Updated : 18 Jun, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

In this article we will see how we can get the name of a user. Name is the display name of the twitter account. It is the name that users choose to identify themselves on the network. Many users choose to either use their real name as the basis for their display name. Unlike screen names, the names need not be unique. Moreover the names can be in any language script, the screen name can only be in English(Latin). Names can also have spaces and special characters in them.

Identifying the name in the GUI :

In the above mentioned profile, GeeksforGeeks is the name of the profile.

In order to get the name we have to do the following :

  1. Identify the user ID or screen name of the profile.
  2. Get the User object of the profile using the get_user() method with the user ID or the screen name.
  3. From this object, fetch the name attribute present in it.

Example 1: Consider the following profile :

We will use the user ID to fetch the user. The user ID of the above mentioned profile is 57741058.




# import the module
import tweepy
  
# assign the values accordingly
consumer_key = ""
consumer_secret = ""
access_token = ""
access_token_secret = ""
  
# authorization of consumer key and consumer secret
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
  
# set access to user's access key and access secret 
auth.set_access_token(access_token, access_token_secret)
  
# calling the api 
api = tweepy.API(auth)
  
# the ID of the user
id = 57741058
  
# fetching the user
user = api.get_user(id)
  
# fetching the name
name = user.name
  
print("The name of the user is : " + name)


Output :

The name of the user is : GeeksforGeeks

Example 2: Consider the following profile :

We will use the screen name to fetch the user. The screen name of the above mentioned profile is PracticeGfG.




# the screen name of the user
screen_name = "PracticeGfG"
  
# fetching the user
user = api.get_user(screen_name)
  
# fetching the name
name = user.name
  
print("The name of the user is : " + name)


Output :

The name of the user is : Practice GfG


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads