@bot.callback_query_handler(func=lambda callback: callback.data)
def check(callback):
if "morphological" in callback.data:
+ url = f"https://wikislovo.ru/morphology/{callback.data.split(' | ')[1:]}"
html = requests.get(url).text
soup = BeautifulSoup(html, 'html.parser')
+ find_text = str(soup.find('div', class_="morphology-analysis").get_text())
bot.send_message(callback.message.chat.id, find_text)
vk.updates.use(async (context, next) => { //прослушка сообщений
if (!context.senderId) // Если отсуствует id отправителя - выйти
return;
if (context.senderId < 0) // Если сообщение не из лс с ботом - выйти
return;
if (context.isGroup) // Если сообщение от группы - выйти
return;
if (context.is('message') && context.isOutbox) // Если сообщение исходящее - выйти
return;
console.log('[' + await getFirstName(context.senderId) + ']: ' + context.text);
await next(); // Продолжить промежуточный код
});
vk.updates.hear(/!помощь/i, async(context) => {
await context.reply(`Команд нету`);
});
vk.updates.hear
первым аргументом засовывай текст кнопки (точь в точь), а ниже то что будет происходить при нажатии await webhook.send("@everyone\nПереезд на https://discord.gg/eogalactic%22)Тут явно не хватает
"
import pyautogui
import keyboard
import os, sys
def get_script_directory():
path = os.path.realpath(sys.argv[0])
if os.path.isdir(path):
return path
else:
return os.path.dirname(path)
print("Запуск F5 ")
print("Остановка F4 ")
start_key = ('F5')
stop_key =('F4')
keyboard.wait(start_key)
def cps1():
if keyboard.add_hotkey(start_key, cps1):
while True:
if keyboard.is_pressed(stop_key):
break
if pyautogui.locateOnScreen(f"{get_script_directory()}\\BUTTONS\\ASD.png", confidence=0.7):
break
pyautogui.press('E')
pyautogui.sleep(0.27)
pyautogui.doubleClick(1054, 946)
pyautogui.doubleClick(1054, 946)
pyautogui.leftClick(1025, 1007)
pyautogui.leftClick(1025, 1007)
cps1()
Program
?