import random
import requests
import lxml
from bs4 import BeautifulSoup
response = requests.get('https://www.securitylab.ru/analytics/')
print(response.status_code)
response = response.content
html = BeautifulSoup(response, 'lxml')
print(html)
sovet = html.find_all(class_='p-2 clearfix')
_otvet = sovet
print(_otvet)
@bot.listen('on_button_click')
async def on_button_click_one(ctx): #проверка на бота
if ctx.component.id == "verif_button":
emb = discord.Embed(title='Прохождение верификации', description='Для прохождения верификации вам необходимо решить пример!', color=0xdd2c2c )
emb.add_field(name='Пример', value='32-17', inline=False)
row = ActionRow(
Button(
style=ButtonStyle.red,
label='15',
custom_id='work_button'
),
Button(
style=ButtonStyle.gray,
label='49'
),
Button(
style=ButtonStyle.green,
label='-17'
)
)
await ctx.send(embed=emb, ephemeral = True, components=[row])