# -*- coding: utf-8 -*-


'''
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()
'''



Example #2
0
In this code we'll have a bunch of examples you can use at your own discretion. 

Simply remove the three ' marks above and below the code you want in order to run it, while
leaving the text within a new set of three ' marks.

Once that's done, go to your Terminal, navigate to where this code and the twitter_follow_bot
code is (they have to be in the same folder), and just type in "python sample_twitter_codes.py" (without quotes)

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)
Once that's done, go to your Terminal, navigate to where this code and the twitter_follow_bot
code is (they have to be in the same folder), and just type in "python sample_twitter_codes.py" (without quotes)

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("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)
Example #4
0
Once that's done, go to your Terminal, navigate to where this code and the twitter_follow_bot
code is (they have to be in the same folder), and just type in "python sample_twitter_codes.py" (without quotes)

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("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)
Justin and Nat


#4 This code will automatically un-follow everyone who hasn't followed you back.
'''
import datetime
if datetime.datetime.now().weekday()==3:
  from twitter_follow_bot import auto_unfollow_nonfollowers
  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.
'''
Example #6
0
from twitter_follow_bot import auto_follow

auto_follow('keyword', count=100) #follows up to 100 users who recently tweeted keyword
Example #7
0
code is (they have to be in the same folder), and just type in "python sample_twitter_codes.py" (without quotes)

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("ecommerce marketing", 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)
'''

'''
#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.
'''
Example #8
0
def run_job(job):
    print("Running {}".format(job))

    auto_follow_query = job.get('auto_follow')
    if auto_follow_query is not None:
        auto_follow(auto_follow_query)
Example #9
0
''''
In this code we'll have a bunch of examples you can use at your own discretion. 

Simply remove the three ' marks above and below the code you want in order to run it, while
leaving the text within a new set of three ' marks.

Once that's done, go to your Terminal, navigate to where this code and the twitter_follow_bot
code is (they have to be in the same folder), and just type in "python sample_twitter_codes.py" (without quotes)

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)
'''
Once that's done, go to your Terminal, navigate to where this code and the twitter_follow_bot
code is (they have to be in the same folder), and just type in "python sample_twitter_codes.py" (without quotes)

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("", 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
Example #11
0
# coding: utf-8
from twitter_follow_bot import auto_follow
from twitter_follow_bot import auto_unfollow_nonfollowers

auto_unfollow_nonfollowers()

auto_follow("lyon", count=40)
auto_follow("libraire", count=40)
auto_follow("librairie", count=40)
auto_follow("mangas", count=40)
auto_follow("naruto", count=40)
auto_follow("comics", count=40)
auto_follow("one piece", count=40)
auto_follow("fairy tail", count=40)
auto_follow("batman", count=40)
auto_follow("marvel", count=40)
auto_follow("cinema", count=40)
auto_follow("films", count=40)
auto_follow("dvd", count=40)
auto_follow("culture", count=40)
auto_follow("culturel", count=40)
auto_follow("pleiade", count=40)
auto_follow("bd", count=40)
auto_follow("bandes dessinées", count=40)
auto_follow("tintin", count=40)
auto_follow("asterix", count=40)
auto_follow("disney", count=40)
auto_follow("superman", count=40)
auto_follow("avengers", count=40)
auto_follow("lyonnais", count=40)
Example #12
0
def run_job(job):
    print("Running {}".format(job))

    auto_follow_query = job.get('auto_follow')
    if auto_follow_query is not None:
        auto_follow(auto_follow_query)
Example #13
0
from twitter_follow_bot import auto_follow

auto_follow("#js", count=10)
auto_fav("react.js", count=10)

#Phrases for following/ favoriting/ RTs
# js, javascript, ecmascript, es6, esnext, angular, react.js, backbone.js, 
Once that's done, go to your Terminal, navigate to where this code and the twitter_follow_bot
code is (they have to be in the same folder), and just type in "python sample_twitter_codes.py" (without quotes)

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("funnyvideos", count=10)
'''
from twitter_follow_bot import auto_rt 
auto_rt("funnyvideos", 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("jwmares", count=10)
'''
'''
#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.
Once that's done, go to your Terminal, navigate to where this code and the twitter_follow_bot
code is (they have to be in the same folder), and just type in "python sample_twitter_codes.py" (without quotes)

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("funnyvideos", count=10)
'''
from twitter_follow_bot import auto_rt 
auto_rt("funnyvideos", 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("jwmares", count=10)
'''

'''
#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.