All Projects → hadiyarajesh → insta-bot

hadiyarajesh / insta-bot

Licence: MIT License
Instagram automation library to perform likes, comments, follow, story viewing and much more.

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to insta-bot

instapi
📷 Python Instagram API
Stars: ✭ 33 (+65%)
Mutual labels:  instagram, instabot
Igbot
🐙 Free scripts, bots and Python API wrapper. Get free followers with our auto like, auto follow and other scripts!
Stars: ✭ 4,094 (+20370%)
Mutual labels:  instagram, instabot
Insta-Bot
Python bot using Selenium increasing Instagram Followers.
Stars: ✭ 62 (+210%)
Mutual labels:  instagram, instabot
Spam Bot 3000
Social media research and promotion, semi-autonomous CLI bot
Stars: ✭ 79 (+295%)
Mutual labels:  instagram, marketing
instapro
professional instagram tool for developers
Stars: ✭ 81 (+305%)
Mutual labels:  instagram, instabot
instabot.js
An attempt to create instabot as gui app
Stars: ✭ 30 (+50%)
Mutual labels:  instagram, instabot
instagramBot
A NodeJS wrapper for the Instagram Bot It works with instagram private api ,It has almost all the features the Instagram app.
Stars: ✭ 40 (+100%)
Mutual labels:  instagram, instabot
instahack
Hack instagram bruteforce new
Stars: ✭ 23 (+15%)
Mutual labels:  instagram
play-tailwind
Play is free and open source Tailwind CSS template for - Startup, SaaS, Apps, Business and More. It comes with a high-quality design and all essential components & pages you need to launch a complete website.
Stars: ✭ 60 (+200%)
Mutual labels:  marketing
bot
Completely free and open-source human-like Instagram bot. Powered by UIAutomator2 and compatible with basically any Android device 5.0+ that can run Instagram - real or emulated.
Stars: ✭ 321 (+1505%)
Mutual labels:  instagram
go-instagram
Instagram private API in Go
Stars: ✭ 71 (+255%)
Mutual labels:  instagram
GitHubApplication
GitHubApplication 📱 is an Android application built to demonstrate the use of modern Android development tools - (Kotlin, Coroutines, Hilt, LiveData, View binding, Data Store, Architecture components, MVVM, Room, Retrofit, Navigation).
Stars: ✭ 11 (-45%)
Mutual labels:  coroutines
eff.lua
ONE-SHOT Algebraic Effects for Lua!
Stars: ✭ 32 (+60%)
Mutual labels:  coroutines
Keemun
No description or website provided.
Stars: ✭ 13 (-35%)
Mutual labels:  coroutines
SocialInfo4J
fetch data from Facebook, Instagram and LinkedIn
Stars: ✭ 44 (+120%)
Mutual labels:  instagram
InstaResponder
Instagram Auto DM responder with DialogFlow 🔥
Stars: ✭ 42 (+110%)
Mutual labels:  instagram
AsyncUtils
A set of utilities for Asynchronous programming in Unity.
Stars: ✭ 15 (-25%)
Mutual labels:  coroutines
Jacob
A lightweight library to provide coroutines in Java
Stars: ✭ 14 (-30%)
Mutual labels:  coroutines
jda-ktx
Collection of useful Kotlin extensions for JDA
Stars: ✭ 49 (+145%)
Mutual labels:  coroutines
Saga
Saga pattern implementation in Kotlin build in top of Kotlin's Coroutines.
Stars: ✭ 24 (+20%)
Mutual labels:  coroutines

Instabot

Instagram bot implemented in Kotlin to perform all major operations supported by Instagram app.

Features

  • Like medias
  • Comment medias
  • Direct messages
  • Watch stories
  • Download medias
  • Hashtag targeting
  • Location targeting
  • And more...

Built with

Kotlin - A modern programming language for Android/JVM that makes developers happier.

Coroutines - For asynchronous programming

Flow - A cold asynchronous data stream that sequentially emits values and completes normally or with an exception.

JsonPathKt - A lighter and more efficient implementation of JsonPath in Kotlin

Installation

Add JitPack to your build.gradle.kts file

repositories {
    ...
    maven(url = "https://jitpack.io")
}

Add Gradle dependency to your build.gradle.kts file

dependencies {
    implementation("com.github.hadiyarajesh:insta-bot:Tag")
}

Quick start

Set your Instagram username and password in Credentials.Kt file

object Credentials {
    const val USERNAME = "your_instagram_username"
    const val PASSWORD = "your_instagram_password"
}

Initialize InstagramBot class with credential value and call prepare method. Then, call login method to login into instagram. (Prepare method must be called before login method)

    val username = Credentials.USERNAME
    val password = Credentials.PASSWORD

    val bot = InstagramBot()
    bot.prepare(username)
    bot.login(username, password)

Now you can perform any operations of your choice like.

// Get 100 followers of you
bot.getSelfFollowers(100).collect { println(it) }
// Like 5 medias from explore page
bot.likeMediasByExplorePage(5).collect { println(it) }
// Approve all pending follow requests
bot.approveAllPendingFollowRequests().collect { println(it) }
// Watch stories of 200 users based on given location
bot.watchLocationUsersStories("enter_location_name_here", 200).collect { println(it) }

For more details, refer BotTest file.

Samples

You can find ready to use sample scripts here

Documentation

You can find documentation here

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Terms and conditions

  • You will NOT use this API for marketing purposes (spam, botting, harassment).
  • We do NOT give support to anyone who wants to use this API to send spam or commit other crimes.
  • We reserve the right to block any user of this repository that does not meet these conditions.

Legal

This code is in no way affiliated with, authorized, maintained, sponsored or endorsed by Instagram, Facebook inc. or any of its affiliates or subsidiaries. This is an independent and unofficial API. Use it at your own risk.

License

MIT License

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].