How to learn create a bot?

fixsnakes

Newbie
Joined
Sep 30, 2022
Messages
4
Reaction score
0
I want to write a bot. Can auto manager mutilaccount, auto posting, or auto erverthing. What language i have to learn ?? Thanks
 
It can depend on if you want a nice interface and have windows or something or if you plan to sell it. I've been using C# and python for very similar tasks recently, and I feel its great to be clued up about both, as you can run ui's that interact and process data, and the python code can work in the back end doing the scraping or heavy lifting. I would suggest you get good at both, as they offer very good libraries, and there is plenty of code on stack for them. I think windows is here to stay, as long as it is, so is C#, and for python, well everyone loves it so it's obviously best to learn to.
 
you want to look at python-selenium, specifically. with this you can achieve all you want in terms of bots and automation.
head to youtube and search python selenium tinder. just one example.
in 30 minutes you will learn to write a tinder automation bot following the tutorial.
with what you learn you can apply it to any website you want.
there are no-code solutions that are very powerful too. such as zennoposter. browserautomationstudio is another one. both vendors are on bhw.
 
Python is the language you should choose in terms of making your bot. It's easy and very powerful. After that you can try things like Selenium etc.
 
@fixsnakes If you have the know-how of basic coding skills you can write it in Python and Selenium. Of course, you should be good at logic implementation as well. Otherwise, if you need to automate only one or two tasks you can go for expert help.
 
Learn programming language first. I agree with most of the replies. Learn python. Understand how the web work, use scraper library for python to scrape and automate task
 
I would recommend automating with JavaScript.

After knowing JS you can transition into lots of things like websites, backends etc

You can do it with other languages it just some aren’t as versatile as Js
 
Javascript (JS) is in my opinion more future proof.

After you got familiar with the language, you can later make the transition into other topics like web development (websites/webapp development basically).

It would be easier for you because the main programming language used for frontend is JS, so if you want to continue into web dev later, you will have learned JS already.

Another good thing is, you can build backends (the server part) with JS too, so you won't have to learn tons of programming language to build a complete web app.

With python, you're kinda limited to the backend side, even if it's probably a bit easier to learn.
 
Back
Top