diff options
author | Kyomotoi <1172294279@qq.com> | 2020-12-20 17:14:41 +0800 |
---|---|---|
committer | Kyomotoi <1172294279@qq.com> | 2020-12-20 17:14:41 +0800 |
commit | 9bf222471d34cb756a4878b103ec82c6c4bfb191 (patch) | |
tree | 1420d498c41f71858e74b4926b8d7206b5235fe6 /ATRI/plugins/plugin_test/__init__.py | |
parent | 9ac2c2eb7ef2eb267e926d599dc077f5afae98f9 (diff) | |
download | ATRI-9bf222471d34cb756a4878b103ec82c6c4bfb191.tar.gz ATRI-9bf222471d34cb756a4878b103ec82c6c4bfb191.tar.bz2 ATRI-9bf222471d34cb756a4878b103ec82c6c4bfb191.zip |
[Update]
- 创建项目结构
Diffstat (limited to 'ATRI/plugins/plugin_test/__init__.py')
-rw-r--r-- | ATRI/plugins/plugin_test/__init__.py | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/ATRI/plugins/plugin_test/__init__.py b/ATRI/plugins/plugin_test/__init__.py deleted file mode 100644 index 573cf8b..0000000 --- a/ATRI/plugins/plugin_test/__init__.py +++ /dev/null @@ -1,52 +0,0 @@ -# !/usr/bin/env python3 -# -*- encoding: utf-8 -*- -''' -@File : __init__.py -@Time : 2020/10/11 14:35:26 -@Author : Kyomotoi -@Contact : kyomotoiowo@gmail.com -@Github : https://github.com/Kyomotoi -@License : Copyright © 2018-2020 Kyomotoi, All Rights Reserved. -@Desc : None -''' -__author__ = 'kyomotoi' - -import inspect -import os -from pathlib import Path -from random import sample - -import nonebot -from nonebot.typing import Bot, Event -from nonebot.plugin import on_command -from nonebot.permission import SUPERUSER - -# 此目录下均为功能测试! - -testRecord = on_command('测试语音', permission=SUPERUSER) - - -@testRecord.handle() -async def _(bot: Bot, event: Event, state: dict) -> None: - await testRecord.finish( - f"[CQ:record,file=file:///{os.path.abspath(Path('.') / 'ATRI' / 'plugins' / 'plugin_test' / 'test.mp3')}]" - ) - - -testGroupList = on_command('获取群列表', permission=SUPERUSER) - - -@testGroupList.handle() -async def _(bot: Bot, event: Event, state: dict) -> None: - group_list = await bot.get_group_list() - group = sample(group_list, 1) - print(group[0]['group_id'], type(group[0]['group_id'])) - - -testSendFormat = on_command('测试发送', permission=SUPERUSER) - - -@testSendFormat.handle() -async def _(bot: Bot, event: Event, state: dict) -> None: - msg = ("test0\n" "test1\n" "test2") - await bot.send(event, msg) |