Show Retweeters Of A Twitter Status In Tweepy
I've been trying to find a way of doing the equivalent of: retweeters_of('twitterstatusid') I can't see an explicit method in tweepy - and couldn't work out any other way of findi
Solution 1:
Solved:
results = api.retweeted_by('statusid')
(This method was missing from documentation.)
Post a Comment for "Show Retweeters Of A Twitter Status In Tweepy"