mirror of
https://github.com/KUlishevgeniy/c22712.git
synced 2026-09-24 08:00:22 +00:00
37 lines
1.3 KiB
Python
37 lines
1.3 KiB
Python
import telebot
|
|
import random
|
|
from telebot import types
|
|
|
|
f = open('C:\\Users\\Honor\\Desktop\\учеба\\прога\\тг_бот\\бот\\факт.txt', 'r', encoding='UTF-8')
|
|
facts = f.read().split('\n')
|
|
f.close()
|
|
|
|
f = open('C:\\Users\\Honor\\Desktop\\учеба\\прога\\тг_бот\\бот\\поговорка.txt', 'r', encoding='UTF-8')
|
|
thinks = f.read().split('\n')
|
|
f.close()
|
|
|
|
bot = telebot.TeleBot('5696445699:AAEPKQgUAs39DTLr_iyQvlaFAsJNFK8DMnc')
|
|
|
|
@bot.message_handler(commands=["start"])
|
|
def start(m, res=False):
|
|
|
|
markup=types.ReplyKeyboardMarkup(resize_keyboard=True)
|
|
item1=types.KeyboardButton("Факт")
|
|
item2=types.KeyboardButton("Поговорка")
|
|
markup.add(item1)
|
|
markup.add(item2)
|
|
bot.send_message(m.chat.id, 'Нажми: \nФакт'
|
|
' для получения интересного факта\nПоговорка '
|
|
'— для получения мудрой цитаты ', reply_markup=markup)
|
|
|
|
@bot.message_handler(content_types=["text"])
|
|
def handle_text(message):
|
|
if message.text.strip() == 'Факт' :
|
|
answer = random.choice(facts)
|
|
|
|
elif message.text.strip() == 'Поговорка':
|
|
answer = random.choice(thinks)
|
|
|
|
bot.send_message(message.chat.id, answer)
|
|
|
|
bot.polling(none_stop=True, interval=0) |