def sendKeyboard(self, text):
sendText = str(text)
InlineKeyboardButton = {"text": "hey", "url": "http://google.com"}
keyboard = [InlineKeyboardButton]
nline_keyboard = [keyboard]
answer = {'chat_id': self.chat_id, 'text':sendText, 'reply_markup': inline_keyboard, 'parse_mode':'markdown'}
url = self.URL + "/sendMessage"
Попробовал данный способ, программа вообще полностью завершается. Одна ошибка с курсором SQLite, другая "Runtime Error: There is no current event loop in thread 'Thread 2'". Есть мысли по этому поводу?