Skip to main content

Command Palette

Search for a command to run...

How to make an Instagram Bot with Python

Updated
4 min read
How to make an Instagram Bot with Python
A

Software Engineer | Technical Blogger | YouTuber | Exploring and Refactoring! | connect with me on Twitter

Do you use Instagram? Do you want to know how to build an Instagram Bot?

This tutorial will teach you how to automate Instagram activities with the help of an Instagram bot. Alt Text Let's get started!

Repository for Ultimate Resource in python. Drop a star if you find it useful! Got anything to add? Open a PR on the same!

Prerequisites for making one (Bot)

- Python
- Instapy module in Python
- An Instagram account, which you will use to run the bot script.

That's it. Now let's dive straight into the code.

Time To Code!

Alt Text

Now let's Understand the code.

Installation of instapy

pip install Instapy

Important: Depending on your system, make sure to use pip3 and python3 instead.

If you would like to install a specific version of Instapy you may do so with:

pip install instapy==0.1.1

Set the login credentials

You can put in your account details now by passing the username and password parameters to the InstaPy() function in your bot script, like so:

InstaPy(insta_username="abc", 
        insta_password="123")

If want InstaPy to run in the background pass the --headless- browser option when running from the CLI Or add the headless_browser=True parameter to the InstaPy(headless_browser=True) constructor.

Liking

The bot will fetch posts with hashtag python3 and javascript. Set the amount to the number of posts you wish to like.

session.like_by_tags(['python3','javascript'], amount=300)

Follow

By default enabled=False, follows every 2nd user from the images

session.set_do_follow(True, percentage=50)

Comment

Enable comments (by default enabled=False) and set commenting probability to 100% so ~ every image will be commented on

session.set_do_follow(True, percentage=100)

Configure a simple list of optional comments, one will be selected at random when commenting:

session.set_comments(['Comment1', 'Comment2', 'Comment3'])

Excluding friends

will prevent commenting on and unfollowing your good friends (the images will still be liked)

session.set_dont_include(['friend1', 'friend2', 'friend3'])

Interactions based on the number of followers and/or following a user has

This is used to check the number of followers and/or following a user has and if these numbers either exceed the number set OR does not pass the number set OR if their ratio does not reach desired potency ratio then no further interaction happens

session.set_relationship_bounds(enabled=True,
                                    delimit_by_numbers=True,
                                    max_followers=3000,
                                    min_followers=150,
                                    min_following=50)

Quota Supervisor

Take full control of the actions with the most sophisticated approaches

session.set_quota_supervisor(enabled=True,
                                    peak_comments_daily=250,
                                    peak_comments_hourly=30,
                                    peak_likes_daily=250,
                                    peak_likes_hourly=30,
                                 sleep_after=['likes', 'follows'])

Once done, we will end the session by session.end().

You are ready to run the bot!

Once you have your bot script configured you can execute the script with the following commands.

python instagrambot.py

You can find my code at GitHub.

You can also connect with me on Twitter Also, have a look at my other Blogs:

Good luck with making your own. If you have any Queries or Suggestions, please reach out to me in the Comments Section below.

H

Your empathy and kindness resonate deeply. Your compassion makes a significant impact on others, I am Student and need Assignment Help For Me, If you know any assignment expert let me know.

E
EliseMary4y ago

You bring something very cool. I recently found a game that makes me addicted. Friday Night Funkin is a music game that takes you to new levels of emotions.

R

Smart apps have become inevitable with the advancement of smartphones and mobile app development https://qatar.carmatec.com/best-mobile-app-development-company-qatar/

A
Amit5y ago

Hi I am getting below error please help me in resolving it . Cannot detect post media type. Skip https://www.instagram.com/

S

please can you show me of how to do it for windows it seems to be different ><

S

how ever great job

More from this blog

A

Ayushi Rawat - The official blog of Ayushi Rawat

72 posts

Software Engineer | Technical Blogger | YouTuber | Exploring and Refactoring! | Connect with me on Twitter