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.3k stars 448 forks source link

Is it possible to make exception to config within script without a separate config file #133

Open pxtyr opened 6 years ago

pxtyr commented 6 years ago

First off: great tool -- thank you for doing this work.

For example, say we wanted to change the Follow_Backoff setting for the auto_fav to be shorter than the auto_follow, for instance.

TwitterFollowBot import TwitterBot

my_bot = TwitterBot(
                    FOLLOW_BACKOFF_MIN_SECONDS:2
                    FOLLOW_BACKOFF_MAX_SECONDS:6
)
my_bot.auto_fav("phrase", count=10)