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

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),

What exactly do you delete? I have pretty much no knowledge of python.
 
Just as a little note: you can install it on Google App Engine, so you can have your bot hosted for free and running 24/7, I have tried it yesterday and it keeps working. If you are interested, I can explain detailed how to do it.
 
What exactly do you delete? I have pretty much no knowledge of python.
delete lines 15-17 in the original example.py


I'm going to implement a better tag system tonight that will read in .txt files full of hashtags, the program will prompt you for a username, password, and then for the name of the .txt file so you can switch between accounts and sets of tags. This is especially helpful if you want to run multiple instances at the same time with different accounts. Ideally this is all displayed in graphic interface but typing shit into the console is pretty straightforward too.

message me and ill send you my edited generic example.py
 
Just as a little note: you can install it on Google App Engine, so you can have your bot hosted for free and running 24/7, I have tried it yesterday and it keeps working. If you are interested, I can explain detailed how to do it.

I'm interested. Please can you explain how to do it?
 
here's the link (drive.google.com/open?id=0B4nyqtDw6bs9ZWhWbFI5NTRPNkU) to my folder containing run.py and a couple of shortcuts that should be pretty easy to use. It adds a way for users to specify settings and tag lists from the command prompt or shortcut. Convenient for when you want to load a different tag list/different user

PLEASE make it possible to populate a list of the users that my account is following, once that list is populated, it should be written to a file and used in subsequent runs of the program in case the user has a large list of users he/she doesn't want to unfollow. This will make it so the user can maintain his/her original following list, and the program will follow/unfollow on top of that secure list.
 
Just as a little note: you can install it on Google App Engine, so you can have your bot hosted for free and running 24/7, I have tried it yesterday and it keeps working. If you are interested, I can explain detailed how to do it.

Please post the instructions on how to do this, flexible or standard installation etc...
 
here's the link (drive.google.com/open?id=0B4nyqtDw6bs9ZWhWbFI5NTRPNkU) to my folder containing run.py and a couple of shortcuts that should be pretty easy to use. It adds a way for users to specify settings and tag lists from the command prompt or shortcut. Convenient for when you want to load a different tag list/different user

PLEASE make it possible to populate a list of the users that my account is following, once that list is populated, it should be written to a file and used in subsequent runs of the program in case the user has a large list of users he/she doesn't want to unfollow. This will make it so the user can maintain his/her original following list, and the program will follow/unfollow on top of that secure list.

I Would be happy to write the code that does this, if someone could please tell me how to generate an array list of users i'm following. I looked around in various files and unfollowpub.py has this function, but I couldn't figure out how to use it with the data pulled from the account online.
 
I will do a post talking about it then!

I watched a few tutorials trying to learn how to set it up, but I'm stuck trying to figure out how to call example.py from an "app" once I load it from the google console
 
Just as a little note: you can install it on Google App Engine, so you can have your bot hosted for free and running 24/7, I have tried it yesterday and it keeps working. If you are interested, I can explain detailed how to do it.
Can you please explain in PM or here. Thank you in advance
 
do you use proxy or AWS ip is fine? and if no proxies how many accounts can be done per 1 AWS ip? thank you
 
do you use proxy or AWS ip is fine? and if no proxies how many accounts can be done per 1 AWS ip? thank you
You should never use AWS ip, unless you want to get your accounts banned. I don't know what retard ever told you to use IP's that come with the vps, but you should always stick to private proxy ips that you know are good. If you see ANYONE selling you any kind of Instagram software that says it runs on the "cloud" or is a web dashboard and you don't need any kind of proxies, RUN THE FUCK AWAY!

Never run any of your instagram accounts without using your own proxies, not even if its a program that runs from a web dashboard.
 
You should never use AWS ip, unless you want to get your accounts banned. I don't know what retard ever told you to use IP's that come with the vps, but you should always stick to private proxy ips that you know are good. If you see ANYONE selling you any kind of Instagram software that says it runs on the "cloud" or is a web dashboard and you don't need any kind of proxies, RUN THE FUCK AWAY!

Never run any of your instagram accounts without using your own proxies, not even if its a program that runs from a web dashboard.
What's the purpose of AWS than if I can as well create virtual machine that'll run as many instagram accounts as I like as long as I use proxies.
I've seen people use numerous accounts per 1 proxy though. Like 5 accounts per 1 IP.
Also as far as I understood proxies have a lifespan and a lot of people who sell them also have non-residential DNS which is basically same thing as IP from VPS.
What would be the best solution than?
 
this bot is shit iv been using it for about 2 weeks dident gt me more thn 30 follower even 30 is to much
 
any free option or any one that i dont have to take loan to buy it ?
 
Back
Top