bostas

Tool for social media automation


Keywords
bostas, python, social-Media, instagram, automation, marketing, promotion, bot, selenium, python-package, self-built-python-package, social-media-automation, web-scraping, webdriver
License
MIT
Install
pip install bostas==0.0.2

Documentation

bostas==0.0.2

A python package for automated web surfing based on selenium module .

Now released on pypi.prg . Check out now Here .


📗 Read Full official documentation Here .

importent links

Installation And Usage(short)

for descripted documentation view here.

  1. To make this bot active you have to download a selenium webdriver. Download any web brouser of your choice.
    First check the version of your brouser then download the driver of same version.
    Download through direct link
  2. Make sure you have downloaded python3 in your Mechine.
    Download python Here
    It's better for you to use a Good IDE.(pycharm/vscode/jupyter notebook....etc.)
  3. Now time to install Bostas. Use "pip install bostas" to install bostas in your sustem.
    No need to install dependencies like selenium,beautifulsoup4 as bostos comes with it's own dependency.
    You are all set to roll.
  4. Use this starter plate to active your bot
    Make sure you have an account on your terget site. Cuz anonymously you can't enter on social media sites.
        from bostas import instabot # for instagram heist
        from selenium import webdriver
        
        # replace with the "PATH" in your local mechine of the installer file of newly downloaded  webdriver.
        # like "C:/Users/USER/Downloads/edgedriver_win32/msedgedriver.exe" // for edge driver.
        # get more help on google.
        
        insta = instabot.InstaBot()
        insta.setup(mydriver=webdriver.Edge("C:/Users/TIRTHA/Downloads/edgedriver_win32/msedgedriver.exe"))
        
        # login to instagram account
        insta.login("username", "passward")
        
        # this will take you to home page of your account.
        # You can set more action using the in-built function like....
        # insta.LikeCommentByUsername(target="user",like=True,comment=True)
        # insta.FollowFollowers()
        # insta.unfollowfollower(["username1","username2",.....])
        # learn more Features on Documentation.
        

Now you are set to play with it.

Disclaimer:

Please be aware of that bostos is a under research period. Maintainer is not responsible for any illigal or violent
usage of this tool. Use it on your responsibility. Maintainer will not responsible if your account get banned or on any legal
action due to extensive use of this tool.