Example #1
0
from twitter_follow_bot import auto_fav
auto_fav("digitalmarketing", count=5)

from twitter_follow_bot import auto_fav
auto_fav("growthhacker", count=5)

from twitter_follow_bot import auto_fav
auto_fav("blockchain", count=5)

from twitter_follow_bot import auto_fav
auto_fav("musictech", count=5)

'''
#4 This code will automatically un-follow everyone who hasn't followed you back.

from twitter_follow_bot import auto_unfollow_nonfollowers
auto_unfollow_nonfollowers()
'''

'''
#5 This code will automatically retweet any tweets with the phrase or hastag chosen in it.'''

from twitter_follow_bot import auto_rt
auto_rt("musictech", count=2)

from twitter_follow_bot import auto_rt
auto_rt("growthhacker", count=2)

from twitter_follow_bot import auto_rt
auto_rt("indiemusic", count=2)
from twitter_follow_bot import auto_fav
auto_fav("digitalmarketing", count=5)

from twitter_follow_bot import auto_fav
auto_fav("growthhacker", count=5)

from twitter_follow_bot import auto_fav
auto_fav("blockchain", count=5)

from twitter_follow_bot import auto_fav
auto_fav("bitcoin", count=5)

'''
#4 This code will automatically un-follow everyone who hasn't followed you back.

from twitter_follow_bot import auto_unfollow_nonfollowers
auto_unfollow_nonfollowers()
'''

'''
#5 This code will automatically retweet any tweets with the phrase or hastag chosen in it.'''

from twitter_follow_bot import auto_rt
auto_rt("machinelearning", count=2)

from twitter_follow_bot import auto_rt
auto_rt("growthhacker", count=2)

from twitter_follow_bot import auto_rt
auto_rt("bitcoin", count=2)
Example #3
0
import time
from twitter_follow_bot import auto_fav, auto_rt

# run 15 times a day (once per hour) starting 6AM PST, total of 3*1*15= 45 favorites a day
for x in range(0, 2):
    auto_fav('keyword1', count=1) #add your own keywords
    auto_rt('keyword1', count=1, result_type="recent")
    time.sleep(60)
    auto_fav('keyword2', count=1) #add your own keywords
    auto_rt('keyword2', count=1, result_type="recent")
    time.sleep(60)
    #add more if necessary
and set the count to how many people should be followed. Default is 100.

from twitter_follow_bot import auto_follow_followers_for_user
auto_follow_followers_for_user("", count=5)


'''
#3 This code will let you favoite things that are relevant to you. Just replace "phrase" with the phrase
you want to favorite for, and set the count to how many things you want to favorite. 
'''

from twitter_follow_bot import auto_fav
auto_fav("", count=25)



'''
#4 This code will automatically un-follow everyone who hasn't followed you back.

from twitter_follow_bot import auto_unfollow_nonfollowers
auto_unfollow_nonfollowers()
'''

'''
#5 This code will automatically retweet any tweets with the phrase or hastag chosen in it.'''

from twitter_follow_bot import auto_rt
auto_rt("", count=10)


Example #5
0
File: main.py Project: j777y/a
from auto import auto_fav
from auto import auto_follow
from twitter_follow_bot import auto_rt 
from twitter_follow_bot import auto_follow_followers_for_user

#this is a sample program to use the auto.py script
auto_rt("funny", count=10)
auto_rt("omg", count=10)
auto_follow("funny", count=10)
auto_fav("funny", count=10)