File size: 354 Bytes
1043020 892a1e5 1043020 80f8118 1043020 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
!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() |