📜  Python – Tweepy 中的 API.lookup_friendships()

📅  最后修改于: 2022-05-13 01:54:37.121000             🧑  作者: Mango

Python – Tweepy 中的 API.lookup_friendships()

Twitter是一个流行的社交网络,用户在其中分享称为推文的消息。 Twitter 允许我们使用 Twitter API 或Tweepy挖掘任何用户的数据。数据将是从用户那里提取的推文。首先要做的是从 twitter 开发人员那里轻松获得每个用户可用的消费者密钥、消费者密钥、访问密钥和访问密钥。这些密钥将帮助 API 进行身份验证。

API.lookup_friendships()

Tweepy模块中API类的lookup_friendships()方法用于获取认证用户与用户列表的详细关系,一次最多100个。

示例 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