Skip to content

Simple bot that can peform actions like following and sending dms on Instagram.

License

Notifications You must be signed in to change notification settings

bboychris168/InstaBot

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

InstaBot

InstaBot is a Python library that provides some automation for simple tasks on Instagram like following accounts and sending DMs on Instagram using Selenium.

Installation

You can install the library from the GitHub repository or by using pip:

pip install InstaWebBot

Usage

IMPORTANT: The driver file for Selenium must be located in the current working directory of your project. You can download the driver here. Please provide the driver name if you are not using the recommended geckodriver.

Initialize the bot by passing in your Instagram username and password as parameters:

from InstaWebBot import InstaBot
bot = InstaBot('your_username', 'your_password')

Here is an example with some optional arguments (using their default value):

from InstaWebBot import InstaBot
bot = InstaBot('your_username', 'your_password', 
               headless=False, 
               driver="geckodriver", 
               output=False)

To log in to Instagram with the given username and password use

bot.login()

Once you have created an instance of the InstaBot class, you can use its methods to automate some simple tasks on Instagram.

Functions

Search for a username by using

bot.search(query)

After that you can perform various actions on a user profile:

bot.follow()
bot.unfollow()
bot.send_dm(message)
bot.get_followers()
bot.get_picture(number)
bot.get_likes()
bot.get_liked_by()
bot.like_picture()
bot.write_comment(message)

It is also possible to get data from the profile once it has been searched with bot.search(query):

user_data = bot.get_data('instagram')
# user_data contains various counters as well as a link to the profile picture, homepage and bio
print(f"Follower count of @instagram: {user_data['followers']}")

This is a small example program to get 50 followers of a given profile (50 is the maximum amount, because Instagram limits the visibility of followers/following lists):

from InstaWebBot import InstaBot
bot = InstaBot('username', 'password')
bot.login()
bot.search('instagram')
followers = bot.get_followers()
for follower in followers:
    print(follower)
bot.close()

Future functionality:

  • Get follower and following counter
  • Get post counter
  • Allow commenting on posts
  • Send direct messages to user
  • Like different images than just the first image
  • Download images
  • Update .get_data() function
  • Improve general usability

LICENSE

InstaBot is licensed under the GNU General Public License v2.0.

Help & Contribution

If you find an error please feel free to open an issue here.

About

Simple bot that can peform actions like following and sending dms on Instagram.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%