telebot12 / app.py
Dooratre's picture
Update app.py
80f8118 verified
raw
history blame
270 Bytes
!pip install pyTelegramBotAPI
import telebot
bot = telebot.TeleBot('6990801595:AAE79xNVO1D_0SeWZlzYLE57Suwfp9GyKT8')
@bot.message_handler(commands=['start'])
def welcome_message(message):
bot.reply_to(message, "مرحباً بك في البوت!")
bot.polling()