Пример #1
0
def unfollow():
	uf_bot = TwitterBot()

	uf_bot.sync_follows()
	uf_bot.auto_follow_followers()
	uf_bot.auto_unfollow_nonfollowers()
	uf_bot.auto_mute_following()
Пример #2
0
def follow_keyword(keyword, number):

	f_bot = TwitterBot()

	f_bot.sync_follows()
	f_bot.auto_follow(keyword, count = number)
	f_bot.auto_follow_followers()
	f_bot.auto_mute_following()
Пример #3
0
from TwitterFollowBot import TwitterBot
import sys
import random
import time

#decale le start du bot
if (len(sys.argv) < 3 or sys.argv[1] != "nowait"):
    time.sleep(random.random() * 50 + 1)

#get arguments et lance bot
#my_bot = TwitterBot()
#print(sys.argv[1])

#gestion du cache
my_bot = TwitterBot()
my_bot.sync_follows()

#decale le start du bot
if (len(sys.argv) < 3 or sys.argv[1] != "nowait"):
    time.sleep(random.random() * 500 + 1)

#Unfollow auto
#my_bot.auto_unfollow_nonfollowers()

#mute everymote
my_bot.auto_mute_following()

#autoRT something
#my_bot.auto_rt(sys.argv[1], random.randint(1,3))