5

私はこの関数を使用して、IDからすべてのフォロワーを取得しています:

def getAllFollowers(id):
    followers = tweepy.Cursor(api.followers, id = id)
    temp = []
    for user in followers.items():
        temp.append(user)

    return temp

フォロワー、友達、ツイートなどの数をページネーションなしで取得する方法はありますか?数だけ。

4

3 に答える 3

6

ユーザー オブジェクトにはfollowers_count、これらの属性がfriends_countあります。statuses_countTwitter API ドキュメントの応答例を参照してください: https://dev.twitter.com/overview/api/users

このアカウントの現在のフォロワー数。特定の強要条件下では、このフィールドは一時的に「0」を示します。例:

"followers_count": 21

于 2012-08-06T20:15:17.890 に答える
4

カウントフォロワー向けの私のソリューションを試してみて くださいhttps://gist.github.com/3879338 このコードでは、consumer_key、c​​onsumer_secret、access_key、access_secretなどのデータを貼り付ける必要があります。

于 2013-01-04T10:42:26.377 に答える
0

ユーザーオブジェクトから「followers_count」を使用する:

handle = 'justinbieber'

user = api.get_user(handle)
num_followers = user.followers_count
num_friends = user.friends_count
于 2021-01-12T14:49:08.517 に答える