Python – Tweepy 中的 API.get_user()
Twitter是一个流行的社交网络,用户在其中分享称为推文的消息。 Twitter 允许我们使用 Twitter API 或Tweepy挖掘任何用户的数据。数据将是从用户那里提取的推文。首先要做的是从 Twitter 开发人员那里轻松获得每个用户可用的消费者密钥、消费者秘密、访问密钥和访问秘密。这些密钥将帮助 API 进行身份验证。
获取用户()
Tweepy模块中API类的get_user()
方法用于获取指定用户的信息。
Syntax : API.get_user(id / user_id / screen_name)
Parameter : Only use one of the 3 options:
id : specifies the ID or the screen name of the user
user_id : specifies the ID of the user, useful to differentiate accounts when a valid user ID is also a valid screen name
screen_name : specifies the screen name of the user, useful to differentiate accounts when a valid screen name is also a user ID
Returns : an object of the class User
示例 1:
# 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)
# using get_user with id
_id = "103770785"
user = api.get_user(_id)
# printing the name of the user
print("The id " + _id +
" corresponds to the user with the name : " +
user.name)
输出 :
The id 103770785 corresponds to the user with the name : Twitter India
示例 2:有时 2 个不同用户的user_id
和screen_name
可能相同,因此我们需要明确提及user_id
或screen_name
。
# using get_user with user_id
user_id = "57741058"
user = api.get_user(user_id)
# printing the name of the user
print("The user id " + user_id +
" corresponds to the user with the name : " +
user.name)
# using get_user with screen_name
screen_name = "geeksforgeeks"
user = api.get_user(screen_name)
# printing the name of the user
print("\nThe screen name " + screen_name +
" corresponds to the user with the name : " +
user.name)
输出 :
The user id 57741058 corresponds to the user with the name : GeeksforGeeks
The screen name geeksforgeeks corresponds to the user with the name : GeeksforGeeks
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。