MyIGBot is a Instagram Private API to like, follow, comment, view & intaract with stories and upload post & stories.
- Easy to use
- More Features
- 2FA Login Support
- Upload Post and Stories
- Intaract with Stories
- Cookie Storing Feature
You can also:
- Send Story Views
- Like, Unlike, Comment in a Post
- Follow, Unfollow User
MyIGBot uses a number of open source projects to work properly:
- Python - Python is an interpreted, high-level and general-purpose programming language
- Requests - to make HTTP requests simpler
- BeautifulSoup - is a Python package for parsing HTML and XML documents.
- Numpy - is the core library for scientific computing in Python.
And of course MyIGBot itself is open source with a public repository on GitHub.
Install MyIGBot from PyPi
$ pip install myigbot
Here is how to use MyIGBot
from myigbot import MyIGBot
bot = MyIGBot('USERNAME', 'PASSWORD') # Login Information (if you're account has 2 Factor Auth. The Bot Will Ask You The Code.)
# like post
a=bot.like('URL')
print(a)
# like recent post of user
b=bot.like_recent('USERNAME')
print(b)
# unlike post
c=bot.unlike('URL')
print(c)
# comment on post
d=bot.comment('URL', comment_text='YOUR COMMENT')
print(d)
# comment on the recent post of user
e=bot.comment_recent('USERNAME', comment_text='YOUR COMMENT')
print(e)
# follow the user
f=bot.follow('USERNAME')
print(f)
# unfollow the user
g=bot.unfollow('USERNAME')
print(g)
# send story view to user
h=bot.story_view('USERNAME')
print(h)
# upload post
s=bot.upload_post('photo.jpg', caption='Sample Photo')
print(s)
# upload story
t=bot.upload_story('story.jpg')
print(t)
Free Software, Hell Yeah!