tomer8007 / kik-bot-api-unofficial

Python API for writing unoffical Kik bots that act like humans
MIT License
126 stars 76 forks source link

Multiple bots #192

Closed kenshin2202 closed 3 years ago

kenshin2202 commented 3 years ago

Is it possible to login to multiple bots using the same script? For a single username/password combination, it's this - username = sys.argv[1] if len(sys.argv) > 1 else input("Username: ") password = sys.argv[2] if len(sys.argv) > 2 else input('Password: ')

Can I make more username and password variables in the same script and run them? Something like

username1 = sys.argv[1] if len(sys.argv) > 1 else input("Username: ") password1 = sys.argv[2] if len(sys.argv) > 2 else input('Password: ')

username2 = sys.argv[1] if len(sys.argv) > 1 else input("Username: ") password2 = sys.argv[2] if len(sys.argv) > 2 else input('Password: ')

tomer8007 commented 3 years ago

I guess you could just use multiple KikClient instances and alike.

kenshin2202 commented 3 years ago

I could but won't I have to provide a new device and android ID for every new bot that I make?

tomer8007 commented 3 years ago

Maybe, but why not just try?

Also I don't know how is this related to the pull request, if you want to make a group spamming bot then you can just make it in your own fork.

Sitiaro commented 3 years ago

https://github.com/tomer8007/kik-bot-api-unofficial/issues/90 <- Refer to this.

tomer8007 commented 3 years ago

Yes, #90 is promising actually.

kenshin2202 commented 3 years ago

I'll look into it then thanks for the help!