-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
40 lines (31 loc) · 1.14 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import requests
from bs4 import BeautifulSoup
from aiogram import Bot, types
from aiogram.dispatcher import Dispatcher
from aiogram.utils import executor
import os
# from config import TOKEN
TOKEN = os.getenv('TOKEN')
bot = Bot(token=TOKEN)
dp = Dispatcher(bot)
def get_fact():
r = requests.get('https://randstuff.ru/fact/')
text = r.text
soup = BeautifulSoup(text, "html.parser")
sel = soup.select("#" + 'fact')
ans = sel[0].get_text()[:sel[0].get_text().rfind('.')]
if "ПресноИнтересн" in ans:
return ans[:ans.find("ПресноИнтересн")]
return ans
@dp.message_handler(commands=['start'])
async def process_start_command(message: types.Message):
await bot.send_message(message.from_user.id,
"Привет, пришлю рандомный факт в ответ на "
"любое твое сообщение")
@dp.message_handler()
async def process_text(message: types.Message):
s = get_fact()
# noinspection PyTypeChecker
await bot.send_message(message.chat.id, s)
if __name__ == '__main__':
executor.start_polling(dp)