-
Notifications
You must be signed in to change notification settings - Fork 437
Home
f varas edited this page Oct 31, 2015
·
2 revisions
Welcome to the TwitterFollowBot wiki!
Temporarily the documentation is in this link (google drive doc).
Example:
I was retweeting about astrophotography but didn't want to include tweets with the word astrology
from TwitterFollowBot import TwitterBot
import time
my_bot = TwitterBot('config.txt')
hashtags = ['#YearInSpace', '#astrophotography -astrology']
for i in hashtags:
print(i)
my_bot.auto_rt(i, count=3)
time.sleep(60)
Sometimes, spam prone accounts use random hashtags to get more RT. If you want to avoid a specific user:
hashtags = [ '#webcam -from:@freewebcamsluts' ]