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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# !/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 os
from pathlib import Path
from random import sample
import nonebot
from nonebot.plugin import on_command
from nonebot.permission import SUPERUSER
from nonebot.adapters.cqhttp import Bot, Event
# 此目录下均为功能测试!
testRecord = on_command('测试语音', permission=SUPERUSER)
@testRecord.handle() # type: ignore
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() # type: ignore
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']))
testBot = on_command('获取bot', permission=SUPERUSER)
@testBot.handle() # type: ignore
async def _(bot: Bot, event: Event, state: dict) -> None:
test_bot = nonebot.get_bots()
print(test_bot, type(test_bot.keys()))
|