Where do I learn to code bots?

isakgjoesdal

Regular Member
Joined
May 22, 2023
Messages
311
Reaction score
57
I have a friend who has coded me some bots these past months. I want to learn to code bots myself and he does not have any good answer on where I can learn to code bots like telegram bots, quora bots and Reddit bots. Do any developers here know of any good Youtuber who teaches you these things?
 
A bot is simply a software that automates an already possible action on a website. So to do this you first choose a language let's say python or nodeJS.

You then try and code a simple action for example a simple bot that loads a given website( I know it sounds simple but you have to realize that a bot is a composition of fragmented actions eg load a website, click a link, log in, complete captcha etc).

You need to think in small steps.
 
A bot is simply a software that automates an already possible action on a website. So to do this you first choose a language let's say python or nodeJS.

You then try and code a simple action for example a simple bot that loads a given website( I know it sounds simple but you have to realize that a bot is a composition of fragmented actions eg load a website, click a link, log in, complete captcha etc).

You need to think in small steps.
Are there any good YouTubers that are learning how to code bots?
 
Are there any good YouTubers that are learning how to code bots?
No. On YouTube everyone just wants to make money so they create clickbait videos. If you take the suggestion that was given by the above member TheoreticallyBr then you will learn. Search for simple tutorial videos that teach small things, not whole bot creating process.
 
The best is find aproffersor/guru on your area, then invest it to learn some knowledge. yt and other opensoruces are not the best on the programming platform.
 
I have a friend who has coded me some bots these past months. I want to learn to code bots myself and he does not have any good answer on where I can learn to code bots like telegram bots, quora bots and Reddit bots. Do any developers here know of any good Youtuber who teaches you these things?

Generally speaking of course, bots are/can be programmed in Python. Below I'm going to copy a post I made to another member in regards learning Python:

One of the first books I always suggest is Automate the Boring Stuff. I believe you can find that online free here: https://automatetheboringstuff.com/

Here are a few other Python resources:

https://realpython.com/products/python-tricks-bookhttps://docs.python.org/3/tutorial/

Outside of the material you can read, I always suggest doing exercise and solving small problems with python/Javascript to keep your brain sharp.
Here are a few Python exercises: https://www.hackinscience.org/exercises/
More exercises: https://www.practicepython.org/
and more exercises: https://py.checkio.org/

On top of that information, here's a step-by-step thread about Python browser automation: https://www.blackhatworld.com/seo/t...lenium-for-python-browser-automation.1462476/

Also here's a roadmap of things to learn and how long it may take you to work on them: https://roadmap.sh/python
 
i recommand you to search about python automation on udemy and when you find a good one copy paste the title on piratebay and donwload that's how i learned everything about programming
 
Back
Top