telebot / app.py
Qasaawaleid's picture
Upload app.py
1043020
raw
history blame contribute delete
270 Bytes
!pip install pyTelegramBotAPI
import telebot
bot = telebot.TeleBot('5903007708:AAEvO_Z45cxnDZ-ZMB-UcrVmliIS-z7K2BQ')
@bot.message_handler(commands=['start'])
def welcome_message(message):
bot.reply_to(message, "مرحباً بك في البوت!")
bot.polling()