eli
eli

Reputation: 5147

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 finding this. Any help appreciated.

Upvotes: 3

Views: 1064

Answers (1)

eli
eli

Reputation: 5147

Solved:

results = api.retweeted_by('statusid') 

(This method was missing from documentation.)

Upvotes: 3

Related Questions