Ejemplo n.º 1
0
Be smart. And have fun :). 

Justin and Nat
'''

'''
#1 Here you can automatically follow people who tweet about a certain phrase. Just replace the phrase
with something relevant to you! Also you can set the count to whatever makes you most comfortable.

from twitter_follow_bot import auto_follow
auto_follow("phrase", count=100)
'''
from twitter_follow_bot import auto_follow
auto_follow("#socialmedia", count=100)

'''
#2 In this code, change "jwmares" to the twitter handle whose followers you want to follow, 
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("jwmares", count=10)
'''
from twitter_follow_bot import auto_follow_followers_for_user
auto_follow_followers_for_user("@JennyBrennanMe ", count=100)

'''
#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("phrase", count=100)
'''
Auto-Follow 40 followers of the username below
'''
from twitter_follow_bot import auto_follow
auto_follow("newyork", count=40)

from twitter_follow_bot import auto_follow
auto_follow("sanfrancisco", count=40)

'''
Auto-Follow the followers of the user below
'''

from twitter_follow_bot import auto_follow_followers_for_user
auto_follow_followers_for_user("iOSDevHelper", count=40)

'''
Unfollow any Non-Followers below
'''

'''
from twitter_follow_bot import auto_unfollow_nonfollowers
auto_unfollow_nonfollowers()
'''





'''
#2 In this code, change "jakegosskuehn" to the twitter handle whose followers you want to follow, 
and set the count to how many people should be followed. Default is 100.

Good follow up would be to get a list of your most popular followers, and follow from THEM.
'''
print("===========================================")
print("Now Following people who follow you! ~N(25,12) total")
print("===========================================")
from twitter_follow_bot import auto_follow_followers_for_user
auto_follow_followers_for_user("jakegosskuehn", count=100)
Ejemplo n.º 4
0
from twitter_follow_bot import auto_follow
auto_follow("indiemusic", count=2)

from twitter_follow_bot import auto_follow
auto_follow("electronicmusic", count=2)

from twitter_follow_bot import auto_follow
auto_follow("blockchain", count=2)

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

#2 In this code, change "jwmares" to the twitter handle whose followers you want to follow, 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("musictech", 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("indiemusic", count=5)

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

from twitter_follow_bot import auto_fav
auto_fav("growthhacker", count=5)
Ejemplo n.º 5
0
def ball():
  threading.Timer(3600.0, ball).start()
  auto_follow_followers_for_user("streamernews", count=20)
  auto_follow_followers_for_user("gamewisp", count=20)
  #auto_unfollow_nonfollowers()
  print "Vape is life"
Ejemplo n.º 6
0
from twitter_follow_bot import auto_follow
auto_follow("leadgen", count=100)
"""

"""
#2 In this code, change "jwmares" to the twitter handle whose followers you want to follow, 
and set the count to how many people should be followed. Default is 100.

start with here: https://www.net-results.com/blogs/relevance/the-top-53-digital-marketing-influencers-you-should-be-following/
so far: craig rosenberg

"""

from twitter_follow_bot import auto_follow_followers_for_user

auto_follow_followers_for_user("akraly", count=500)


"""
#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("leadgen", count=100)
"""


"""
#4 This code will automatically un-follow everyone who hasn't followed you back.
from twitter_follow_bot import auto_follow
auto_follow("machinelearning", count=2)

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

from twitter_follow_bot import auto_follow
auto_follow("blockchain", count=2)

from twitter_follow_bot import auto_follow
auto_follow("bitcoin", count=2)

#2 In this code, change "jwmares" to the twitter handle whose followers you want to follow, 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("GrowthHackers", 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("machinelearning", count=5)

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

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

'''
#1 Here you can automatically follow people who tweet about a certain phrase. Just replace the phrase
with something relevant to you! Also you can set the count to whatever makes you most comfortable.
'''
from twitter_follow_bot import auto_follow
auto_follow("snowboard", count=100)


'''
#2 In this code, change "jwmares" to the twitter handle whose followers you want to follow, 
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("@burtonsnowboard", count=100)



'''
#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("snowboard", count=100)

'''
from twitter_follow_bot import auto_fav
auto_fav("capita", count=100)

from twitter_follow_bot import auto_fav
'''
Auto-Follow 40 followers of the username below
'''
from twitter_follow_bot import auto_follow
Auto_Follow("newyork", count=40)

from twitter_follow_bot import auto_follow
Auto_Follow("sanfrancisco", count=40)

'''
Auto-Follow the followers of the user below
'''

from twitter_follow_bot import auto_follow_followers_for_user
auto_follow_followers_for_user("iOSDevHelper", count=40)

'''
Unfollow any Non-Followers below
'''

'''
from twitter_follow_bot import auto_unfollow_nonfollowers
auto_unfollow_nonfollowers()
'''





Justin and Nat
'''

'''
#1 Here you can automatically follow people who tweet about a certain phrase. Just replace the phrase
with something relevant to you! Also you can set the count to whatever makes you most comfortable.'''

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


#2 In this code, change "jwmares" to the twitter handle whose followers you want to follow, 
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.
Ejemplo n.º 11
0
WARNING: Following too many people, favoriting too many things, CAN and WILL get you banned.

Be smart. And have fun :). 

Justin and Nat
'''
'''
#1 Here you can automatically follow people who tweet about a certain phrase. Just replace the phrase
with something relevant to you! Also you can set the count to whatever makes you most comfortable.

from twitter_follow_bot import auto_follow
auto_follow("phrase", count=100)
'''
from twitter_follow_bot import auto_follow
auto_follow("#socialmedia", count=100)
'''
#2 In this code, change "jwmares" to the twitter handle whose followers you want to follow, 
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("jwmares", count=10)
'''
from twitter_follow_bot import auto_follow_followers_for_user
auto_follow_followers_for_user("@JennyBrennanMe ", count=100)
'''
#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("phrase", count=100)
'''
Ejemplo n.º 12
0
def ball():
    threading.Timer(3600.0, ball).start()
    auto_follow_followers_for_user("streamernews", count=20)
    auto_follow_followers_for_user("gamewisp", count=20)
    #auto_unfollow_nonfollowers()
    print "Vape is life"