Telegram-Bot не отвечает корректно - PullRequest
0 голосов
/ 28 мая 2020

Я делаю бот для телеграмм, у меня есть слияние, которое состоит в разделении, которое не работает, но добавить, если оно есть, кто-нибудь знает почему?

import logging

from telegram.ext import Updater, CommandHandler, MessageHandler, Filters

# Enable logging
logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
                    level=logging.INFO)

logger = logging.getLogger(__name__)

def start(update, context):
    update.message.reply_text('Hola!')


def help(update, context):
    update.message.reply_text('Help!')

def sumar(update, context):
    try:
        numero1 = int(context.args[0])
        numero2 = int(context.args[1])

        suma = numero1 + numero2
        update.message.reply_text('La suma es '+str(suma))

    except (IndexError, ValueError):
        update.message.reply_text('Por favor utiliza dos numeros')    

def dividir(update, context):
    try:
        numero1 = int(context.args[0])
        numero2 = int(context.args[1])

        div= numero1 / numero2
        update.message.reply_text('La division da '+str(div))

    except (IndexError, ValueError):
        update.message.reply_text('Por favor utiliza dos numeros')

def echo(update, context):
    """Echo the user message."""
    update.message.reply_text(update.message.text)


def error(update, context):
    """Log Errors caused by Updates."""
    logger.warning('Update "%s" caused error "%s"', update, context.error)


def main():
    """Start the bot."""
    # Create the Updater and pass it your bot's token.
    # Make sure to set use_context=True to use the new context based callbacks
    # Post version 12 this will no longer be necessary
    updater = Updater("1225696978:AAFsJYex51HMRbKL814tLJJPczJMu3nLlYY", use_context=True)

    # Get the dispatcher to register handlers
    botm3 = updater.dispatcher

    # on different commands - answer in Telegram
    botm3.add_handler(CommandHandler("start", start))
    botm3.add_handler(CommandHandler("help", help))
    botm3.add_handler(CommandHandler("Sumar", sumar))
    botm3.add_handler(CommandHandler("Division", dividir))

    # on noncommand i.e message - echo the message on Telegram
    botm3.add_handler(MessageHandler(Filters.text, echo))

    # log all errors
    botm3.add_error_handler(error)

    # Start the Bot
    updater.start_polling()

    # Run the bot until you press Ctrl-C or the process receives SIGINT,
    # SIGTERM or SIGABRT. This should be used most of the time, since
    # start_polling() is non-blocking and will stop the bot gracefully.
    updater.idle()


if __name__ == '__main__':
    main()

У меня есть две функции для бота , один работает, другой нет, и они имеют одинаковую структуру, но это не действует. Я оставляю вам свой токен, чтобы вы могли провести тесты, если хотите, имя бота: @ moha_m03_1bot

Ответы [ 2 ]

0 голосов
/ 28 мая 2020

Я думаю, название команды сбивает с толку:

  • '/ Sumar 2 2' -> La suma es 4
  • '/ Division 4 2' -> La Division da 2.0
  • '/ Dividir 2 2' -> не соответствует ни одной команде

Команды называются Sumar и Division, возможно, вы имели в виду, чтобы они вызывались Sumar и Dividir

0 голосов
/ 28 мая 2020

это «деление», а не «dividir», не пытайтесь использовать имя функции в телеграмме, попробуйте «деление»

botm3.add_handler(CommandHandler("Division", dividir))

У меня он отлично работает

...