PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Wednesday, October 26, 2022

[FIXED] How to build instagram bot for android

 October 26, 2022     automation, bots, flutter, instagram, python     No comments   

Issue

I'm lokking for a way Building an android app which do auto follow, comments, like, and all the process is automatic and like a human.When you Start the app and put your id its open instagram automaticly and start its work until you close instagram

So my question is how can i build like this app? Is it possible on flutter? I search alot and finde nothing any idea??


Solution

Use Kivy or KivyMD if possible. You can use InstaPy or build your own API if you feel like being original. Like @jabbson mentioned, I won't provide the full code with working functions because this is not a charity website. However here's a starter code for you:

import kivy
from kivy.app import App
from kivy.uix.widget import Widget
from kivy.lang import Builder

class Interface(Widget):
    pass

class Launcher(App):
    def build(self):
        Builder.load_file('yourkvfile.kv')

if __name__=='__main__':
    Launcher().run()

Good luck in building your app!



Answered By - Dương Duy Nhật Minh
Answer Checked By - Mildred Charles (PHPFixing Admin)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing