mahrtayyab / tweety

Twitter Scraper
494 stars 67 forks source link

Bug in "get_user_followings" #171

Closed fabston closed 7 hours ago

fabston commented 8 months ago

I have noticed that for a few accounts i am not able to grab their following, it just returns 0 while they follow accounts.

A few accounts that are effected: @VMNFT93, @0xd063, @ahboyash.

mahrtayyab commented 8 months ago

image

fabston commented 8 months ago

Oh ok, must be because he got restricted I guess? The other two got followings tho

mahrtayyab commented 8 months ago

image

if you can send the code snippet you are running

fabston commented 8 months ago
from tweety import Twitter

app = Twitter("session")
app.connect()

followings = app.get_user_followings(986054149920866305) # @ahboyash
print(followings)
for follow in followings:
    print(follow)

which prints: UserFollowings(user_id=986054149920866305, count=0)

mahrtayyab commented 8 months ago

image are you updated?

fabston commented 8 months ago

I am on version 1.0.9.5. Just ran pip install https://github.com/mahrtayyab/tweety/archive/main.zip --upgrade again so I assume I am?