forked from jaguar754/instabot.py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.py
More file actions
20 lines (17 loc) · 656 Bytes
/
example.py
File metadata and controls
20 lines (17 loc) · 656 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from instabot import InstaBot
bot = InstaBot(login="my_username", password="my_password",
like_per_day=1000,
comments_per_day=0,
tag_list=['follow4follow', 'f4f', 'cute'],
tag_blacklist=['rain', 'thunderstorm'],
user_blacklist={'hellokitty':'', 'hellokitty3':''},
max_like_for_one_tag=50,
follow_per_day=150,
follow_time=5*60*60,
unfollow_per_day=150,
unfollow_break_min=15,
unfollow_break_max=30,
log_mod=0)
bot.new_auto_mod()