Files
my-flipper-shits/GNU-Linux/Execution/Telegram_Persistent_Connection_Linux/connection.py
T
2025-07-04 07:09:11 +00:00

12 lines
234 B
Python

from telebot import TeleBot
# Set here the Telegram bot token
BOT_TOKEN = ""
bot = TeleBot(BOT_TOKEN)
@bot.message_handler(commands=['start'])
def send_welcome(message):
bot.reply_to(message, "Ok it works")
bot.infinity_polling()