要使用 Tweepy 获取关注者数量,您需要首先安装 Tweepy 库并设置好 Twitter 开发者帐户。以下是一个简单的示例,说明如何使用 Tweepy 获取关注者数量。
pip install tweepy
import tweepy
# 替换以下值为您的 Twitter 开发者帐户的 API 密钥和访问令牌
consumer_key = 'your_consumer_key'
consumer_secret = 'your_consumer_secret'
access_token = 'your_access_token'
access_token_secret = 'your_access_token_secret'
# 设置 Tweepy 认证
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
# 创建 Tweepy API 对象
api = tweepy.API(auth)
# 获取关注者数量
user = api.get_user('username')
followers_count = user.followers_count
print(f"关注者数量:{followers_count}")
请注意,您需要将代码中的 'username'
替换为您要查询的 Twitter 用户名。
此示例使用 Tweepy 库获取关注者数量,不需要使用分页。
云+社区技术沙龙[第14期]
云+社区技术沙龙[第21期]
北极星训练营
云+社区技术沙龙[第1期]
DB・洞见
Hello Serverless 来了
serverless days
开箱吧腾讯云
Techo Day
领取专属 10元无门槛券
手把手带您无忧上云