Python – Tweepy 中的 API.lookup_friendships()
Twitter是一个流行的社交网络,用户在其中分享称为推文的消息。 Twitter 允许我们使用 Twitter API 或Tweepy挖掘任何用户的数据。数据将是从用户那里提取的推文。首先要做的是从 twitter 开发人员那里轻松获得每个用户可用的消费者密钥、消费者密钥、访问密钥和访问密钥。这些密钥将帮助 API 进行身份验证。
API.lookup_friendships()
Tweepy模块中API
类的lookup_friendships()
方法用于获取认证用户与用户列表的详细关系,一次最多100个。
Syntax : API.lookup_friendships(user_ids / screen_names)
Parameters : Only use one of the 2 options:
- user_ids : a list that specifies the IDs of the users.
- screen_names : a list that specifies the screen names of the users.
Returns : an object of the class Relationship
示例 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)
# list of screen names
screen_names = ["SrBachchan",
"akshaykumar",
"imVkohli",
"sachin_rt",
"SonuSood"]
# getting the friendship details
friendships = api.lookup_friendships(screen_names = screen_names)
for friendship in friendships:
print("Is the authenticated user following " + friendship.screen_name, end = "? : ")
print(friendship.is_following)
输出 :
Is the authenticated user following SrBachchan? : False
Is the authenticated user following akshaykumar? : True
Is the authenticated user following imVkohli? : True
Is the authenticated user following sachin_rt? : False
Is the authenticated user following SonuSood? : False
示例 2:使用用户 ID 分析关系。
# list of user IDs
user_ids = [813286,
27260086,
21447363,
79293791,
17919972]
# getting the friendship details
friendships = api.lookup_friendships(user_ids = user_ids)
for friendship in friendships:
print("Is the authenticated user following " + friendship.screen_name, end = "? : ")
print(friendship.is_following)
输出 :
Is the authenticated user following BarackObama? : True
Is the authenticated user following justinbieber? : False
Is the authenticated user following katyperry? : False
Is the authenticated user following rihanna? : False
Is the authenticated user following taylorswift13? : False
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。