Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Qasaawaleid
/
telebot
like
0
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
1043020
telebot
/
app.py
Qasaawaleid
Upload app.py
1043020
over 1 year ago
raw
Copy download link
history
blame
Safe
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()