custom keyboard telegram bot python

Solutions on MaxInterview for custom keyboard telegram bot python by the best coders in the world

showing results for - "custom keyboard telegram bot python"
Odette
12 Feb 2018
1...
2    markup = ReplyKeyboardMarkup(keyboard=[['Time', KeyboardButton(text='Logo')],["File", "Audio"]])
3    if command == '/start':
4        telegram_bot.sendMessage (chat_id, str("Hi! Which one do you want? choose from the below keyboard buttons."), reply_markup=markup)
5        telegram_bot.sendMessage(chat_id, str(now.hour)+str(":")+str(now.minute))
6...