• Отлов сигнала от QlineEdit() PyQt5?

    @nzarchii60 Автор вопроса
    5ebb06f9f24e5831824799.png
    Непойму как исправить это, и привязать к диалоговому окну.
  • Почему Выдает False?

    @nzarchii60
    Дмитрий, Что вас так беспокоит, данный код подходит для пайтона. Используя логику сравнения которая в последвие выдает значение True False Boolean.
  • Как подключить бд к боту телеграм?

    @nzarchii60
    sqlite3 это локальная база данных, она не поддерживает удаленное подключение к ней.
    Т.к преднозначена для доступа внутри локальной сети.
    Можно конечно расширить общую папку в локальной сети и подключаться к ней через нее.
  • Символ переноса строки newline \n python?

    @nzarchii60 Автор вопроса
    Да почти добрался, до такой функции только.
    с print(text.replace("\n","\n"))
    Такой код деплоится, и не воспринимает slech "\\"
  • Почему не воспринимает переменую в тексте telebot?

    @nzarchii60 Автор вопроса
    Крошится код, и не обрабатывается как задумывалось!
    import telebot
    import config
    import random
     
    from telebot import types
     
    bot = telebot.TeleBot(config.TOKEN)
    
    i = ('text1_items')
    x = ('text2_Kypon')
    z = ('text3_wallet')
    y = ('text4_helps')
    
    @bot.message_handler(commands=['start'])
    def welcome(message):
        sti = open('avatar1459.jpg', 'rb')
        bot.send_sticker(message.chat.id, sti)
    
        # keyboard
        markup = types.ReplyKeyboardMarkup(resize_keyboard=True)
        item1 = types.KeyboardButton(text=i)
        item2 = types.KeyboardButton(text=x)
        item3 = types.KeyboardButton(text=z)
        item4 = types.KeyboardButton(text=y)
    
      
        markup.add(items, item2, item3, item4)
     
        bot.send_message(message.chat.id, "Добро пожаловать, {0.first_name}!\nЯ - <b>{1.first_name}</b>, бот созданный чтобы быть подопытным кроликом.".format(message.from_user, bot.get_me()),
            parse_mode='html', reply_markup=markup)
    @bot.message_handler(func=lambda message: True)
                
    def message_handler(message):
        if message.chat.type == 'private':
            if message.text == 'hello':
                bot.send_message(message.chat.id, "Have a nice day!")
            if '6kzujg-bk7bhh-snlfqr' in message.text:
                bot.send_message(message.chat.id, "Да друг твой код готов к обработке")
            if 'ga4y7n-38p5z2-m1ugot' in message.text:
                bot.send_message(message.chat.id, "Да друг твой код готов к обработке 1")    
            if '5gva57-7jtj5p-vldrck' in message.text:
                bot.send_message(message.chat.id, "Да друг твой код готов к обработке 2")
            if '5nf1yi-m5c9ij-gtm3f8' in message.text:
                bot.send_message(message.chat.id, "Да друг твой код готов к обработке 3")             
            elif message.text == 'Пополнить':
                bot.send_message(message.chat.id, str(random.randint(0,100)))
                bot.send_message(message.chat.id, str(random.randint(0,100)))   
            elif message.text == ' Рандомное число':
                bot.send_message(message.chat.id, 'Я не пью')
            elif message.text == '23':    
                bot.send_message(message.chat.id, 'Я не знаю что ответить ')  
    
            elif message.text == ' Как дела?':
     
                markup = types.InlineKeyboardMarkup(row_width=2)
                item1 = types.InlineKeyboardButton("Хорошо", callback_data='good')
                item2 = types.InlineKeyboardButton("Не очень", callback_data='bad')
     
                markup.add(item1, item2)
     
                bot.send_message(message.chat.id, 'Отлично, сам как?', reply_markup=markup)
            #else:
                # bot.send_message(message.chat.id, 'Я не знаю что ответить ')
    
    @bot.callback_query_handler(func=lambda call: True)
    def callback_inline(call):
        try:
            if call.message:
                if call.data == 'good':
                    bot.send_message(call.message.chat.id, 'Вот и отличненько ')
                elif call.data == 'bad':
                    bot.send_message(call.message.chat.id, 'Бывает ')
     
                # remove inline buttons
                bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text=" Как дела?",
                    reply_markup=None)
     
                # show alert
                bot.answer_callback_query(callback_query_id=call.id, show_alert=False,
                    text="ЭТО ТЕСТОВОЕ УВЕДОМЛЕНИЕ!!11")
     
        except Exception as e:
            print(repr(e))
    # RUN
    bot.polling(none_stop=True)