Untitled

 avatar
unknown
python
2 years ago
377 B
6
Indexable
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()
Editor is loading...