本文介紹了Discord.py 拼寫檢查命令的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
最近,我查看了 Stack Overflow,發現了這段代碼可以檢查潛在的拼寫錯誤:
Recently, I looked up Stack Overflow and found this code which can check for potential typos:
from difflib import SequenceMatcher
SequenceMatcher(None, "help", "hepl").ratio()
# Returns 0.75
這適用于 inside bot 命令的代碼.但是,我應該如何做到這一點,如果我在命令名稱中打錯字,它會更正并執行命令?
This works for code inside the bot command. However, how should I make it so, if I make a typo in the command name, it will correct it and execute the command?
推薦答案
from difflib import SequenceMatcher
@bot.event
async def on_command_error(ctx, error):
if not isinstance(error, commands.CommandNotFound):
return
message = ctx.message # later overwrite the attributes
used_prefix = ctx.prefix # the prefix used
used_command = message.content.split()[0][len(used_prefix):] # getting the command, `!foo a b c` -> `foo`
available_commands = [cmd.name for cmd in bot.commands]
matches = { # command name: ratio
cmd: SequenceMatcher(None, cmd, used_command).ratio()
for cmd in available_commands
}
command = max(matches.items(), key=lambda item: item[1])[0] # the most similar command
try:
arguments = message.content.split(" ", 1)[1]
except IndexError:
arguments = "" # command didn't take any arguments
new_content = f"{used_prefix}{command} {arguments}".strip()
message.content = new_content # overwriting the "original" message
await bot.process_commands(message) # processing commands with the new, updated message
這篇關于Discord.py 拼寫檢查命令的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!
【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!