How to run/host your Bot 24/7 online FOR FREE! [No longer works]

preview_player
Показать описание
A comprehensive guide that will teach you how to run your Discord Bot for 24/7 online FOR FREE! Free online bot managing system programmed using Python Library. Create your first discord bot now!

Suggested video:
Send Embed messages in Discord:

#discord #discordbot #discordtutorial #python

Video Chapters:
00:00 – Intro
00:04 – Add simple codes
02:08 – Making the bot 24/7 online
06:36 – Outro

► If you've bumped into any issues related to this topic, feel free to add me on Discord: (samwisebyte)
► Comment down below on which type of content you want to see in the next video! Thanks for watching!

********************************
from flask import Flask
from threading import Thread

app = Flask('')

def home():
return "I'm alive"

def run():

def keep_alive():
t = Thread(target=run)
********************************
Рекомендации по теме
Комментарии
Автор

guys if your getting this error: ModuleNotFoundError: No module named 'flask' - paste "pip install Flask" into the shell it should fix the problem

vvvplayz
Автор

[Edit:]
*Note:* This no longer works as to recent changes in repl.it dev hosting.

discordbottutorial
Автор

Mine is not working properly. I have started in night, in the morning nothing works. Then started in morning and after 2 hours bot stopped working. Don’t know why ?

rutvikrana
Автор

Note: This is no longer working as to recent changes in repl.it in 2024

discordbottutorial
Автор

No url shown at the webview screen, but it indeed alive after I closed the replit site.
I guess I should have a domain first to get the url? so it's not really free?

mas-daym
Автор

It is possible to do it in vscode right?

ssjuanss_
Автор

Hello! This is a great video and really helpful! Only problem is I don, 't have the "Webview" tab as an option, does it matter to make it working?

matlouis
Автор

Can’t people open my replit and steal the bots token?

Avilic
Автор

Why don’t I have the link after starting the bot it just shows “/“

ThatFoxiee
Автор

I followed every step but it stops working as soon as I close the replit tab, works fine when the tab is open :(

Cyphernk
Автор

Pip keep alive not found but I installed it

Vandan_am
Автор

Does the bot still go online when the PC is off?

Clebersla
Автор

for me the command "!say is not working"

IamCHONG