Untitled

mail@pastecode.io avatar
unknown
python
a year ago
377 B
4
Indexable
Never
import telebot

bot = telebot.TeleBot('6129307:AAHenkQyJMNtpUJzqono42WA8H')

@bot.message_handler(commands=['buongiorno']) # cosa deve fare il programma quando quando riceve il messaggio /buongiorno da telegram attraverso il bot
def send_response(message):
	user_id = str(message.chat.id) #converte in stringa
	bot.send_message(message.chat.id, "ciaaa")

bot.infinity_polling()