Bot creation SDKs and libraries

culebra

Newbie
Joined
Nov 23, 2015
Messages
2
Reaction score
0
HI all,

I've been looking for a while online for tools like ubot studio or zennoposter or BAS but that's targeted mainly at programmers. Meaning, I'm an experienced software developer so I would prefer to write code rather than to use UI to create actions, etc.

I looked at selenium, puppeteer and similar software. These solutions are fine but they lack many of the functionalities needed to code bots. For example: making automated browsers not detectable, simulating human actions like mouse movements and delays, etc.

Could anyone please recommend me SDKs or libraries I could use to accomplish some of the examples mentioned above?

Thanks!
 
I think you can do all this with puppeteer. You could study it a bit more and see for yourself.

Good luck!
 
I think you can do all this with puppeteer. You could study it a bit more and see for yourself.

Good luck!
Yes, I know I can do all of that with puppeteer. However, it would be a lot of work to implement things like browser fingerprint spoofing from scratch, not to mention keeping up to date with detection tactics from different sites. It would be great to use a library on top of puppeteer (or selenium, etc) that provides that and other needed functionalities specific to bot coding.

Anyone knows of such libraries or SDKs?

Thanks!
 
Yes, I know I can do all of that with puppeteer. However, it would be a lot of work to implement things like browser fingerprint spoofing from scratch, not to mention keeping up to date with detection tactics from different sites. It would be great to use a library on top of puppeteer (or selenium, etc) that provides that and other needed functionalities specific to bot coding.

Anyone knows of such libraries or SDKs?

Thanks!

Browser fingerprint? With puppeteer you can connect to any chrome instance you want... you can create an empty chrome profile and use browser.connect to access that instance or just clear the cache of the used profile and you are good to go. You can also control the speed to make it "more human" if you want.

I honestly think you are too afraid of being detected, lol. You wont find a "impossible to detect" bot tecnology anywhere i guess. Just start coding right now and start botting man, no time to waste lol..

Anyway, just my 2 cents... good luck!
 
Have you tried python with selenium chromedriver? What problem did you face? IMO it's exactly what you're looking for.
 
HI all,

I've been looking for a while online for tools like ubot studio or zennoposter or BAS but that's targeted mainly at programmers. Meaning, I'm an experienced software developer so I would prefer to write code rather than to use UI to create actions, etc.

I looked at selenium, puppeteer and similar software. These solutions are fine but they lack many of the functionalities needed to code bots. For example: making automated browsers not detectable, simulating human actions like mouse movements and delays, etc.

Could anyone please recommend me SDKs or libraries I could use to accomplish some of the examples mentioned above?

Thanks!
Not really sure what you mean. Selenium is kind of the "gold standard" at the moment when it comes to writing bots. That, or Cef. Also depends what language you want to go with. Are you trying to write gui with your apps or just use terminal or hell, just launch from your ide?

Selenium really lacks nothing when it comes to its abilities to automate anything you can do in a browser. BUT you could also look into Cef, html agility pack, beautiful soup, mechanize, just to name a few...
 
Back
Top