Follower Count instaloader

150 Views Asked by At

I want to print the amount of followers the target user has using instaloader.

def FollowerCount():
    return(profile.get_followers())
print(FollowerCount())

but I get this

<instaloader.nodeiterator.NodeIterator object at 0x000001E26A2CF4F0>
1

There are 1 best solutions below

1
JoubasaurusREX On BEST ANSWER
def FollowerCount():
    followers = profile.followers
    print(followers)