From: Joshua Roesslein Date: Wed, 28 Feb 2018 21:51:34 +0000 (-0800) Subject: Revert change to skip users with more than 300 followings X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=9fec3f8e497b23d43f28628f8e5f8bbefc095221;p=tweepy.git Revert change to skip users with more than 300 followings --- diff --git a/docs/code_snippet.rst b/docs/code_snippet.rst index 324fe03..aed7d7c 100644 --- a/docs/code_snippet.rst +++ b/docs/code_snippet.rst @@ -75,5 +75,5 @@ will wait for 15 minutes each time it hits the rate limit. time.sleep(15 * 60) for follower in limit_handled(tweepy.Cursor(api.followers).items()): - if follower.friends_count > 300: + if follower.friends_count < 300: print follower.screen_name