Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

only follows? #134

Open
alfons3992 opened this issue Nov 15, 2017 · 3 comments
Open

only follows? #134

alfons3992 opened this issue Nov 15, 2017 · 3 comments

Comments

@alfons3992
Copy link

Hey, so my line looks like this:

from TwitterFollowBot import TwitterBot
my_bot = TwitterBot()
my_bot.auto_follow("phrase")
my_bot = TwitterBot()
my_bot.auto_follow("#hashtag")
my_bot = TwitterBot()
my_bot.auto_fav("phrase", count=1000)

and when i run it, it only follows "phrase" but doesnt retweet or favorite any tweets
please help

also if i got 30 of these bots, how can i put proxies on each of them?

thanks :)

@msanvarov
Copy link

Instead of creating many instances of a class write it once. So it should be
my_bot = TwitterBot()
my_bot.auto_follow("phrase")
my_bot.auto_follow("#hashtag")
my_bot.auto_fav("phrase", count=1000)

@chemostafa
Copy link

Its only follows with me to
from TwitterFollowBot import TwitterBot
phrase
my_bot.auto_follow("phrase")
my_bot.auto_follow("#phrase")
my_bot.auto_follow_followers()
my_bot.auto_fav("phrase",count=1000)
my_bot.auto_rt("phrase", count=1000)

And its only follow , no rt or fv
Also.I need to know how I writ mor hashtag ?
Is that look like
my_bot.auto_follow("#phrase" , "also")
Or without space like
my_bot.auto_follow("#phrase"," also")
Sorry I new in programmer

@mablono5
Copy link

mablono5 commented Feb 9, 2018

Try this

my_bot = TwitterBot()
my_bot.auto_follow("phrase", count=3)
my_bot.auto_follow("#hashtag", count=3)
my_bot.auto_fav("phrase", count=3)

Once you have added the counts and ran the script it should auto stop.

Bear in mind that you can change the count to what ever you want but the script will run through each part before moving on to the next.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants