-
-
Notifications
You must be signed in to change notification settings - Fork 301
/
spellcheck.py
33 lines (27 loc) · 958 Bytes
/
spellcheck.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
# Ultroid - UserBot
# Copyright (C) 2020 TeamUltroid
#
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
# PLease read the GNU Affero General Public License in
# <https://www.github.com/TeamUltroid/Ultroid/blob/main/LICENSE/>.
"""
✘ Commands Available -
• {i}spcheck <text/reply to message>
check spelling of the text/sentence
"""
from textblob import TextBlob
from . import *
@ultroid_cmd(pattern="spcheck ?(.*)")
async def spellchk(event):
to_check = event.pattern_match.group(1)
if not to_check and event.is_reply:
reply = await event.get_reply_message()
if reply.text:
to_check = reply.text
if not (to_check or event.is_reply):
return await event.eor("`Give me some text/sentence to check its spelling!.`")
check = TextBlob(to_check)
correct = check.correct()
await eor(
event, f"**Given Phrase:** `{to_check}`\n**Corrected Phrase:** `{correct}`"
)