Python Tweepy – 获取用户名
在本文中,我们将了解如何获取用户名。 Name 是 Twitter 帐户的显示名称。它是用户选择在网络上标识自己的名称。许多用户选择使用他们的真实姓名作为显示名称的基础。与屏幕名称不同,名称不必是唯一的。此外,名称可以是任何语言脚本,屏幕名称只能是英文(拉丁文)。名称中还可以包含空格和特殊字符。
在 GUI 中识别名称:
在上面提到的配置文件中,GeeksforGeeks 是配置文件的名称。
In order to get the name we have to do the following :
- Identify the user ID or screen name of the profile.
- Get the User object of the profile using the
get_user()
method with the user ID or the screen name. - From this object, fetch the name attribute present in it.
示例 1:考虑以下配置文件:
我们将使用用户 ID 来获取用户。上述配置文件的用户 ID 是 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)
输出 :
The name of the user is : GeeksforGeeks
示例 2:考虑以下配置文件:
我们将使用屏幕名称来获取用户。上述个人资料的网名是 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)
输出 :
The name of the user is : Practice GfG
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。