skip to Main Content

telegram custom KeyboardButton doesn't work. After execution, no buttons apper in telegram, no erros occur – Telegram API

python version 3.8.3 import telegram #imorted methodts from telegram.ext import Updater, CommandHandler import requests from telegram import ReplyKeyboardMarkup, KeyboardButton from telegram.ext.messagehandler import MessageHandler import json # below is function defined the buttons to be return def start(bot, update): button1 =…

VIEW QUESTION

Convert usd and eur in Bot Telegram – Telegram API

I'm studying Python for create a simple Bot for Telegram, but I have a problem. I created 2 files exchange.py and BotHtmlTelegram.py exchange.py: EXCHANGE=1.125 def from_usd_to_eur(usd): return usd/EXCHANGE def from_eur_to_usd(eur): return EXCHANGE*eur and this BotHtmlTelegram.py: from telegram.ext import Updater, CommandHandler,…

VIEW QUESTION
Back To Top
Search