How to watch million Instagram stories with python

Dan Okhlopkov
3 min readJun 16, 2019

--

Hi! If you want to mass watch Instagram stories for free, the tool called Instabot can help you with it!

Instabot is a free python library that can help you to automate any Instagram activity for free.

Below you can find the step-by-step solution on how you can launch free Instagram stories mass viewer on your laptop or a server. The proposed script will grab your likers, watch their stories, then grab their likers and watch the next batch of stories and repeat this indefinitely. But you can change it for your needs since Instabot python library is very flexible.

Install All Requirements

Install python 3.7

Since Instabot is written on python, you need to have the python installed on your laptop or a server. You can find the solution for your operating system on an official python website — here. I suggest installing the latest python version available— python 3.7.

Install pip

Pip is a package manager for Python — you’ll need it to install Instabot.

To check if the requirement pip module is already installed, type in your Terminal (or CMD for Windows):

pip3 -V

It should output something like this:

pip 19.0.3 from /usr/local/lib/python3.7/site-packages/pip (python 3.7)

If pip has not been installed yet, check this article for step-by-step installation instructions.

Install Instabot

Since python 3.7 and pip3 are already installed, you are able to install instabot module:

pip3 install -U instabot

Run Instagram Stories Mass Viewer

Download Script

Now you should have all the dependencies installed and you are ready to run the script. The script can be found here — you can just copy-paste the code and change it for your needs.

If you want just to run the script above, you can download it with this one line command — just copy paste it into your Terminal for UNIX/macOS or into CMD for Windows:

You should now have the watch_user_likers_stories.py file in the folder.

Run Script

Since you have all required dependencies installed and files downloaded, let’s run the magic script:

python3 watch_user_likers_stories.py

After that a bot would ask you to input your Instagram username and password — it will login as you and will watch stories from your account.

The script will grab your likers and watch their stories. After that, the script will take one random user of your likers — get his/her likers and watch their stories. This loop will repeat several (random) times. After that, the script will back to grab your likers again.

If you want to change the starting account from yours to someone’s, just pass the username to the script like this:

python3 watch_user_likers_stories.py ohld

Where ohld — is the username of the user whose likers you want to attract by watching their stories.

Have more questions? Please welcome to our Telegram chat. Since the tool is free, please consider donating 5 bucks if it helped you. Thanks!

--

--