What Programming Language is best for Web automation 2023! Basic & Advance Bots

Techno_Cats

Regular Member
Joined
Oct 22, 2018
Messages
250
Reaction score
54
Hello BHW Family.
i am looking for best recommendation for my work.
1. My Mainly Task are Web automation.
I Want to create Telegram Auto shop.
For example Client 1 will send data request in Telegram bot.
after take data request from client. web automation will take his data and process the web automation steps. after job it done need to send specific result data back to client 1.
i need to keep the all record of client requests and result send back to them.

let me know your best suggestions.
 
There is no best language. Personally I prefer to use c# but have used python and nodejs for similar tasks. All would be sufficient for this task, including many others. Stick with that you feel most comfortable with. There are loads of free resources out there.

Research puppeteer or selenium (recommend puppeteer, I found it was easier to avoid detection with some anti detection extensions)

As for storage probably I'd probably use postgres but there's a million other options. If you are using cloud architecture I'd be tempted use some queues and function apps.
 
Thanks looking to get more suggestions from others.
i commend in other section putting that hear to see if get some fast suggestions.

Currently my main need to Create Telegram auto shop bot. that will be connected with web automation.
Telegram bot users will make xyz request. they send data in specific format. that data will be used to fill in xyz website. it will create account given given data. it has google recaptchua V2 or V3. after it pass the captcha. need to send back result to the one who made the request.

Telegram Bot > Multiple users can make request same time or any time with different data within given data format.
Telegram bot will forward that data for automation after the automaton task done. it should send back specific result to back to the one who made the data lookup request.
i am confused it can be done with BAS or i must learn python.
All of my future work will be required web automation.

Thanks advance for your time.
looking forward to choose what to select for work.
 
Python is a must nowadays, but depends on what you like the most and the way you plan to approach your goal.

Try to get a sense of what each language does and how it does it and then you decide which one to use to build your bot. Keep a good captcha solving service, I use death by captcha and try to invest fully on antidetection. Good proxy capability and your are good to go.
 
Selenium and python but you could try javascript with Nodejs also.
 
Hello BHW Family.
i am looking for best recommendation for my work.
1. My Mainly Task are Web automation.
I Want to create Telegram Auto shop.
For example Client 1 will send data request in Telegram bot.
after take data request from client. web automation will take his data and process the web automation steps. after job it done need to send specific result data back to client 1.
i need to keep the all record of client requests and result send back to them.

let me know your best suggestions.
It is hard to use programming language to fulfill web automation task. You can use some automation tools to finish your task for you.
 
In the past I have made Telegram bots in C++ because that's what I'm most comfortable with but if you are incorporating web automation in to your program I would just do the whole thing in Python.
 
Node.js + puppeteer is my personal favourite. Python + selenium works just as well. For simple scrapers using chromium can be a little overkill though. For those bots you could use python request, or node.js http module.

Both python and node work pretty well, and it is just personal taste what you use.
 
If you wanna go hardcore, then C++

Why? Cuz you then program the browser source code itself without using selenium. You then reach the enlightened yoda level of webfuckery.

1680783451966.png
 
For the web it's easier with Javascript, the ecosystem is MASSIVE.

It's not as beginner friendly as Python, but it's more web oriented.

I already created a telegram bot that send me notifications based on events for a crypto project.

If you know programming, it's not that hard (honestly)
 
Hello BHW Family.
i am looking for best recommendation for my work.
1. My Mainly Task are Web automation.
I Want to create Telegram Auto shop.
For example Client 1 will send data request in Telegram bot.
after take data request from client. web automation will take his data and process the web automation steps. after job it done need to send specific result data back to client 1.
i need to keep the all record of client requests and result send back to them.

let me know your best suggestions.

I mainly use nodejs for everything related to this.
 
Back
Top