[Tutorial] Setting up a FREE Instagram bot: instabot.py

I didn't make the bot & im not sure which bot you're using or which setting. I don't use the one from the OP's original post. I use the one found later posted in this thread.

Okay How can you set it to where it doesn't follow the same people over and to not unfollow who I currently am following? Can you direct me to the page of the free bot you use ? Thank you.
 
Nice! Imagine this with a GUI. Also, what are some safe numbers for liking, following unfollowing etc?
 
Ive ran it for one hour and follower and following didnt change a bit,and it made like 20 follows program seems to work any ideas?
 
anyone can help me please ?i used this bot on my pc-windows and it working fine ....but today i create an AWS console , installed fine python requests and everything but is not working ....it open the window it say ....trying to login as ..... and after 20 seconds it closing :(
 
i discover what is the problem ....again my proxy ....when i try to connect without proxy is working .so i`m using instantproxies that only works on windows .tryied them on pythonanywhere and AWS and not working .is here someone that use multiple accounts on pythonanywhere or AWS ?can you recomand what proxy to use ? thank you
 
Now it keeps following same person over and over? Yay free bot,yay free bot problems.10 follows same ID,wth?
 
Has anyone had problems with instagram detecting either of the bots mentioned here?
 
Works perfectly! I was wondering how can one make the follow / like rate quicker? Right now it's following very slowly and I want to burst some new followers quickly. Is it the follow_time in the main module?

Some errors I faced and solutions that worked for me (Win 10 PC):
Opens and closes very quickly | Trace back error:
Make sure you installed Python correctly and gave it an environmental variable.
Then install requests module (look up a YouTube tutorial)

Login error:
That happened so many times and I thought it was bugged at first, but turned out that I wasn't 100% certain what my password was.

Hope that helps. :)
 
Works perfectly! I was wondering how can one make the follow / like rate quicker? Right now it's following very slowly and I want to burst some new followers quickly. Is it the follow_time in the main module?

Some errors I faced and solutions that worked for me (Win 10 PC):
Opens and closes very quickly | Trace back error:
Make sure you installed Python correctly and gave it an environmental variable.
Then install requests module (look up a YouTube tutorial)

Login error:
That happened so many times and I thought it was bugged at first, but turned out that I wasn't 100% certain what my password was.

Hope that helps. :)

That information is on the main page: follow_time = how many times passes before the bot unfollows a followed user (sec)
 
Is this still work, i did all the steps i open the file appear a message then vanish :

no module ... request.
 
help im getting this error

"ImportError: No module named requests

ps-MBP-3:instabot.py-master ....$ "
 
I ll give this a shot, is it safe to run one account on a pc with this, and log the same account on my phone to see results?
 
mine just pops up the cmd box for a split second and then dissapears, please help?
 
I really like this program so I took five minutes to write an easier way for users to login. Add it to the beginning of example.py (delete lines 15-17)

# -> Tuple containing both arguments after 'opensourcebotsfuckyeah.py'
def accept_command_line_arguments():
commandLineArguments = []
for i in sys.argv:
commandLineArguments.append(i)
if len(commandLineArguments) != 3:
print("Format: opensourcebotsfuckyeah.py <Username> <Password>")
Username = input("Type Username Here: ")
Password = input("Type Password Here: ")
return (Username, Password)
Username = commandLineArguments[1]
Password = commandLineArguments[2]
return (Username, Password)

(login, password) = accept_command_line_arguments()

bot = InstaBot(
login = str(login),
password = str(password),
 
Last edited:
Back
Top