Beispiel #1
0
def general(bot, update):
    if update.message.text.isdigit():
        global estro, genero_musical, song_id
        bot.sendMessage(chat_id=update.message.chat_id,
                        text='Por ultimo ¿consideras sexista esta canción?',
                        reply_markup=teclado(2))
        chat.cuerpo(update, read_lyrics.song_name(update), estro)
        estro = []
        return AWNSER5
    else:
        update.message.reply_text('Tiene que ser un número del 1 al 10')
        return GENERAL
Beispiel #2
0
def awnser4(bot, update):
    global estro
    if update.message.text == 'ninguna':

        bot.sendMessage(chat_id=update.message.chat_id,
                        text='Por ultimo ¿consideras sexista esta canción?',
                        reply_markup=teclado(2))
        chat.cuerpo(update, read_lyrics.song_name(update))
        return AWNSER5
    if update.message.text.isdigit():
        check_number(update)

        return AWNSER4
    if update.message.text == '\U0001f51a' and len(estro) > 0:
        bot.sendMessage(
            chat_id=update.message.chat_id,
            text=
            'En una escala de 1 a 10, siendo 1 el nivel más bajo y 10 el más alto, '
            '¿en qué medida se les otorga un valor de “objeto sexual”?',
            reply_markup=teclado(5))

        return GENERAL