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