
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
MyIGBot is a Private API for Instagram to like, follow, comment, view & intaract with stories, upload post & stories, get all information about a user/posts and get posts based on locations/hashtags. It also supports proxy.
MyIGBot is a Instagram Private API to like, follow, comment, view & intaract with stories, upload post & stories, get all information about a user/posts and get posts based on locations/hashtags.
You can also:
MyIGBot uses a number of open source projects to work properly:
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 (you can also check usage.py)
from myigbot import MyIGBot
bot = MyIGBot('USERNAME', 'PASSWORD')
response = bot.like('https://www.instagram.com/p/CH5qV6-so6Y/')
print(response) # if the response code is 200 that means ok
response = bot.unlike('https://www.instagram.com/p/CH5qV6-so6Y/')
print(response) # if the response code is 200 that means ok
response = bot.like_recent('instagram')
print(response) # if the response code is 200 that means ok
response = bot.comment('https://www.instagram.com/p/CH5qV6-so6Y/', comment_text='Nice Post!')
print(response) # if the response code is 200 that means ok
response = bot.comment_recent('instagram', comment_text='Nice Post!')
print(response) # if the response code is 200 that means ok
response = bot.follow('instagram')
print(response) # if the response code is 200 that means ok
response = bot.unfollow('instagram')
print(response) # if the response code is 200 that means ok
response = bot.story_view('b31ngdev')
print(response) # if the response code is 200 that means ok
response = bot.upload_post('image.png', caption='Image 1')
print(response) # if the response code is 200 that means ok
response = bot.upload_story('image2.png')
print(response) # if the response code is 200 that means ok
response = bot.hashtag_posts('programmershumor', limit=50)
print(response) # by default the limit is setted to 20, this is a optional parameter
response = bot.location_posts('https://www.instagram.com/explore/locations/6889842/paris-france/', limit=20)
print(response) # by default the limit is setted to 20, this is a optional parameter
response = bot.user_posts_count('instagram')
print(response)
response = bot.user_followers_count('instagram')
print(response)
response = bot.user_follow_count('instagram')
print(response)
response = bot.like_count('https://www.instagram.com/p/CH5qV6-so6Y/')
print(response)
response = bot.comment_count('https://www.instagram.com/p/CH5qV6-so6Y/')
print(response)
response = bot.user_posts('instagram', limit=50)
print(response) # by default the limit is setted to 50, this is a optional parameter
response = bot.user_followers('instagram', limit=50)
print(response) # by default the limit is setted to 50, this is a optional parameter
response = bot.user_follows('instagram', limit=50)
print(response) # by default the limit is setted to 50, this is a optional parameter
response = bot.post_likers('https://www.instagram.com/p/CH5qV6-so6Y/', limit=50)
print(response) # by default the limit is setted to 50, this is a optional parameter
response = bot.post_commenters('https://www.instagram.com/p/CH5qV6-so6Y/', limit=50)
print(response) # by default the limit is setted to 50, this is a optional parameter
response = bot.feed_posts()
print(response)
response = bot.post_owner('https://www.instagram.com/p/CH5qV6-so6Y/')
print(response)
response = bot.post_caption('https://www.instagram.com/p/CH5qV6-so6Y/')
print(response)
response = bot.post_location('https://www.instagram.com/p/CH5qV6-so6Y/')
print(response)
response = bot.post_hashtags('https://www.instagram.com/p/CH5qV6-so6Y/')
print(response)
response = bot.post_tagged_user('https://www.instagram.com/p/B2fZRgBA2wj/')
print(response)
response = bot.user_dp('instagram')
print(response)
response = bot.user_bio('instagram')
print(response)
response = bot.private_user('instagram')
print(response)
response = bot.verified_user('instagram')
print(response)
response = bot.user_external_url('instagram')
print(response)
response = bot.follows_me('instagram')
print(response)
response = bot.followed_by_me('instagram')
print(response)
response = bot.video_views_count('https://www.instagram.com/p/B2XPNNvgApx/')
print(response)
response = bot.post_type('https://www.instagram.com/p/CH5qV6-so6Y/')
print(response)
response = bot.post_time('https://www.instagram.com/p/CH5qV6-so6Y/')
print(response)
Here is how to add proxy
from myigbot import MyIGBot
proxies = {
'http': 'user:pass@host:port',
'https': 'user:pass@host:port'
}
bot = MyIGBot('USERNAME', 'PASSWORD', proxy=proxies)
from myigbot import MyIGBot
proxies = {
'http': 'host:port',
'https': 'host:port',
}
bot = MyIGBot('USERNAME', 'PASSWORD', proxy=proxies)
Free Software, Hell Yeah!
FAQs
MyIGBot is a Private API for Instagram to like, follow, comment, view & intaract with stories, upload post & stories, get all information about a user/posts and get posts based on locations/hashtags. It also supports proxy.
We found that myigbot demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.