rhiever / TwitterFollowBot

A Python bot that automates several actions on Twitter, such as following users and favoriting tweets.
GNU General Public License v3.0
1.31k stars 447 forks source link

Time interval between each Auto favorite #77

Open rl421403 opened 9 years ago

rl421403 commented 9 years ago

I just noticed that the bot does not respect the time interval set (in config.txt) between each action when we use auto favorite.

FOLLOW_BACKOFF_MIN_SECONDS:10
FOLLOW_BACKOFF_MAX_SECONDS:60

These are only for follow action. Not sure about unfollow and other. Will need to test them.

rhiever commented 9 years ago

Looks like you're right. self.wait_on_action() needs to be added to the loop in auto_fav and any other auto_ functions that it's missing from.

Filed this as a bug.

rl421403 commented 9 years ago

auto_mute_following() is also not accepting count and not respect the time interval too. I just hit the rate limit.