Instagram bot. It works without using instagram API, the script only needs your account login and password. It's writen in Python.
After Instagram closed the api (new review process), there were some problems with auto - liking, commenting and following bots.
If your app can't pass new review process, this is the solution!
This InstaBot works by using https://www.instagram.com website and only needs your login and password.
####1) Login:
Login is automatic, when you create InstaBot
class element:
bot = InstaBot('login', 'password',
like_per_day=1000,
media_max_like=10,
media_min_like=0,
tag_list = ['cat', 'car', 'dog'],
max_like_for_one_tag=5,
log_mod = 0)
####2) Set likes and unlike:
Limit of likes in one day. Default value is 1000 likes per 24 hours.
If use more than 1000 likes in a single day day - instagram can ban you. Usually this bot is ran 24/7 and is set to spread out the 1000 likes evenly throughout the day. If you want more likes - you can use auto_mod() - set this parameter to 5000 or 10000 or more. Delay formula is: (24 hour * 60 minute * 60 second / like_per_day)
######Be careful, don't set more than 1000 like in one day!
like_per_day=1000
Don't like media (photo or video) if it has more than media_max_like
likes. media_max_like = 0
will ignore this property. If media has too much likes - your like will not get the desired effect.
Don't like media (photo or video) if it has less than media_min_like
likes. media_min_like = 0
will ignore this property.
media_max_like=10
media_min_like=0
Tag list to like.
tag_list = ['cat', 'car', 'dog']
Like 1 to max_like_for_one_tag
times by row.
max_like_for_one_tag=5
You can like one tag:
bot.get_media_id_by_tag('dog')
Like 4 times:
bot.like_all_exist_media(4)
Or you can choose auto_mod
(like all tags from setting by loop):
bot.auto_mod()
For unlike:
bot.unlike('media_id')
####3) Set comments:
bot.comment('media_id', 'comment')
For example:
bot.comment(11111111111111111111, 'Cool!')
####4) Follow and unfollow: Follow:
bot.follow('user_id')
Unfollow:
bot.unfollow('user_id')
For example (follow and unfollow user with id 111111111):
bot.follow(111111111)
bot.unfollow(111111111)
####5) Else:
Log mod: log_mod=0
log to console, log_mod=1
log to file, log_mod=2
no log.
log_mod = 0
####6) Logout from exist session:
bot.logout()
Standard use (will like by loop, all default tag):
bot = InstaBot('login', 'password')
bot.auto_mod()
Standard use with your tag (will like by loop, all your tag):
bot = InstaBot('login', 'password', tag_list = ['with', 'your', 'tag'])
bot.auto_mod()
Standard use with change default settings (you should know what you do!):
bot = InstaBot('login', 'password',
like_in_day=100000,
media_max_like=50,
media_min_like=5,
tag_list = ['like', 'follow', 'girls'],
max_like_for_one_tag=50,
log_mod = 1)
bot.auto_mod()
Get media_id buy one tag 'python'
and like 4 of them:
bot = InstaBot('login', 'password')
bot.get_media_id_by_tag('python')
bot.like_all_exist_media(4)
Python
Instagram account
instabot.py
file must be in UTF-8
encoding if you use Python 3
, or ASCII
in Python 2
(PEP)!
-
You should download and install
Python
on your OS. -
You should install Python lib
requests
. Run commandpip3 install requests
if you usePython 3
, or typepip install requests
if you usePython 2
. -
Download
instabot.py
and save it in right encoding! -
Add the code to the end of the file (like in usage examples), depending on how you want to use bot.
-
Run program
python3 instabot.py
orpython instabot.py
on MAC and Linux, orpython instabot.py
on Windows.
Windows & Python 3.4
CentOS & Python 3.4
CentOS & Python 2.6
Mac OS X & Python 2.7
The entire responsibility for the use of bot is entirely on you.
If you want to get some user info (follower, following and etc.) Instagram don't give this info.
Class in userinfo.py
aggregate this information, from other sites (now only from http://ink361.com/)
ui = UserInfo()
Search by user_name
(need to get user_id
, user_name
if you don't know it):
ui.search_user(user_name="danbilzerian")
or if you know user_id
use ui.search_user(user_id="50417061")
. Your result:
print(ui.user_name)
print(ui.user_id)
Get following list with no limit
ui.get_following()
print(ui.following)
Get followers list with limit 10:
ui.get_followers(limit=10)
print(ui.followers)