使用tweepy库在Twitter上获取好友和追随者的步骤如下:
pip install tweepy
import tweepy
consumer_key = "YOUR_CONSUMER_KEY"
consumer_secret = "YOUR_CONSUMER_SECRET"
access_token = "YOUR_ACCESS_TOKEN"
access_token_secret = "YOUR_ACCESS_TOKEN_SECRET"
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
api = tweepy.API(auth)
请将YOUR_CONSUMER_KEY
、YOUR_CONSUMER_SECRET
、YOUR_ACCESS_TOKEN
和YOUR_ACCESS_TOKEN_SECRET
替换为您在Twitter开发者平台上获得的实际值。
friends_ids
和followers_ids
方法来获取好友和追随者的用户ID列表:friend_ids = api.friends_ids()
follower_ids = api.followers_ids()
friends = api.lookup_users(user_ids=friend_ids)
followers = api.lookup_users(user_ids=follower_ids)
friends
和followers
变量来访问每个用户的详细信息。例如,您可以打印出好友和追随者的用户名:for friend in friends:
print(friend.screen_name)
for follower in followers:
print(follower.screen_name)
这样,您就可以使用tweepy库在Twitter上获取好友和追随者了。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云