PagerMaid_Plugins/kongge.py

25 lines
694 B
Python
Raw Permalink Normal View History

2021-06-28 05:32:46 +00:00
from pagermaid.listener import listener
2022-01-18 08:47:20 +00:00
from pagermaid import version
2021-06-28 05:32:46 +00:00
jieba_imported = True
try:
import jieba
except ImportError:
jieba_imported = False
@listener(is_plugin=True, outgoing=True, ignore_edited=True)
async def kongge(context):
2021-06-28 05:51:17 +00:00
try:
if jieba_imported and context.text and not context.via_bot and not context.forward:
if context.text.startswith('-') or context.text.startswith('/'):
return
seg_list = jieba.cut(context.text)
seg_txt = ' '.join(seg_list)
seg_txt.replace('@ ', '@')
if not seg_txt == context.text:
await context.edit(seg_txt)
except:
pass