[Free bot] Free Instagram bot for your Raspberry Pi

Is it possible to run this bot on a headless remote server with Ubuntu 16.04 instaled?
Would the way to install it be approximately the same or do you know of a tutorial that shows how to install and operate it on a remote headless server with Ubuntu 16.04 installed on it?
 
Now that we have the bot files on your Pi we have to install them. For that we need Python and PIP.
Code:
sudo apt-get update
sudo apt-get install python python-pip
When the raspberry is done installing you can navigate to the Instabot folder. Here we should be able to find the requirements.txt file.

I did all the stuff above, but I can't navigate to the instabot folder... there is no requirements.txt file
why op should use pyton ? is that ok to use c++ or php?
 
can you get banned using this bot?
if you change the variables such as likes per day or follows to something over what the defaults are set to, then yes, youre likely to be banned as you are "too active" to be humanly realistic. if you keep everything in check and realsitic, you shouldnt get banned
 
can you get banned using this bot?

I have been using this bot more a year on my raspberry now. I haven’t been banned. As mentioned above it all depends on your settings. Don't overdo them!

why op should use pyton ? is that ok to use c++ or php?

C++ is for Windows. Of course there are bots made with it, but it's limited by OS. Python can be used more broadly.
PHP requires a web server and so monthly fees, I just prefer my pi.

Is it possible to run this bot on a headless remote server with Ubuntu 16.04 instaled?
Would the way to install it be approximately the same or do you know of a tutorial that shows how to install and operate it on a remote headless server with Ubuntu 16.04 installed on it?
It's a python script. The OS doesn't really matter as long as you can install python :)
 
Thanks for this script. Managed to get it to work on Windows and on my Synology NAS, after solving the JSON-error.

Now I would still like to install it on a remote headless-server. But the server always gives a login-error. Tried everything yet, but haven't found a solution yet. Maybe it's because the server is in another country.

@OP: can you elaborate a bit more about the settings you have been using yet. For example : can you run this bot 24/7? What are approximately the best, most aggressive settings, without being banned.
 
Thanks for this script. Managed to get it to work on Windows and on my Synology NAS, after solving the JSON-error.

Now I would still like to install it on a remote headless-server. But the server always gives a login-error. Tried everything yet, but haven't found a solution yet. Maybe it's because the server is in another country.

The reason for this could be the Instagram security reasons. Perhaps you have to verify the IP address from your remote server. I had this problem once.
 
Hello, first off, thanks a bunch for sharing. I'm getting an error when trying to run the script. If someone can help me out it would be most appreciated.

python/home/pi/bot/instabot.py/example.py
Traceback (most recent call list):
File "/home/pi/bot/instabot.py/example.py", line 6, in <module> from src import InstaBot
File "/home/pi/bot/instabot.py/src/__init__.py", line 1, in <module> from .instabot import InstaBot
File "/home/pi/bot/instabot.py/src/instabot.py", line 22, in <module> ImportError: No module named fake_useragent

Thanks in advance! John
 
Hello, first off, thanks a bunch for sharing. I'm getting an error when trying to run the script. If someone can help me out it would be most appreciated.

python/home/pi/bot/instabot.py/example.py
Traceback (most recent call list):
File "/home/pi/bot/instabot.py/example.py", line 6, in <module> from src import InstaBot
File "/home/pi/bot/instabot.py/src/__init__.py", line 1, in <module> from .instabot import InstaBot
File "/home/pi/bot/instabot.py/src/instabot.py", line 22, in <module> ImportError: No module named fake_useragent

Thanks in advance! John
Could you try and write the following code?
Code:
sudo pip install fake_useragent

This should install the required module. If the problem is not solved feel free to ask again.
 
Could you try and write the following code?
Code:
sudo pip install fake_useragent

This should install the required module. If the problem is not solved feel free to ask again.
Hey, thanks for your help. I did that and now is giving me a different error.

pi@raspberrypi:~/bot/instabot.py $ sudo python followbot.py
24.--.20--_05:34 Instabot v1.2.0 started at 24.--.20-- 05:34:

24.--.20--_05:34 Trying to login as myusername...

Traceback (most recent call last):
File "followbot.py", line 52, in <module>
unfollow_whitelist=['example_user_1', 'example_user_2'])
File "/home/pi/bot/instabot.py/src/instabot.py", line 231, in __init__
self.login()
File "/home/pi/bot/instabot.py/src/instabot.py", line 300, in login
self.user_id = ui.get_user_id_by_login(self.user_login)
File "/home/pi/bot/instabot.py/src/userinfo.py", line 41, in get_user_id_by_login
all_data = json.loads(info.text)
File "/usr/lib/python2.7/json/__init__.py", line 339, in loads
return _default_decoder.decode(s)
File "/usr/lib/python2.7/json/decoder.py", line 364, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/usr/lib/python2.7/json/decoder.py", line 382, in raw_decode
raise ValueError("No JSON object could be decoded")
ValueError: No JSON object could be decoded
pi@raspberrypi:~/bot/instabot.py $


Thanks a bunch! John
 
Thanks, I just did that and read the rest of the posts. Getting a new error :/

pi@raspberrypi:~ $ sudo python /home/pi/bot/instabot.py/followbot.py
Traceback (most recent call last):
File "/home/pi/bot/instabot.py/followbot.py", line 6, in <module>
from src import InstaBot
File "/home/pi/bot/instabot.py/src/__init__.py", line 1, in <module>
from .instabot import InstaBot
File "/home/pi/bot/instabot.py/src/instabot.py", line 297
finder = r.text.find(self.user_login) if finder != -1:
^
SyntaxError: invalid syntax

Really appricaite all of your help.
 
Anyone want to send me a working micro sd card with full version of a linux distro for raspberry pi with instabot pre-installed and working for $20?
 
Whats the ideal threshold I can like, follow, unfollow etc.. on instagram using this bot without getting blocked by instagram.
 
UPDATE! Bot is running! :) faithlessdbo went above and beyond helping me. He actually took the time to write up a fix, uploaded to his server and shared with me. I cannot be more grateful! Thanks again, you rock!
 
Back
Top