mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-07-28 08:41:29 +00:00
Improve structure
This commit is contained in:
0
none_demo/__init__.py
Normal file
0
none_demo/__init__.py
Normal file
9
none_demo/config.py
Normal file
9
none_demo/config.py
Normal file
@ -0,0 +1,9 @@
|
||||
import re
|
||||
|
||||
from none.default_config import *
|
||||
|
||||
SECRET = 'abc'
|
||||
|
||||
SUPERUSERS = {1002647525}
|
||||
COMMAND_START = {'', '/', '!', '/', '!', re.compile(r'^>+\s*')}
|
||||
COMMAND_SEP = {'/', '.', re.compile(r'#|::?')}
|
0
none_demo/plugins/__init__.py
Normal file
0
none_demo/plugins/__init__.py
Normal file
22
none_demo/plugins/weather/__init__.py
Normal file
22
none_demo/plugins/weather/__init__.py
Normal file
@ -0,0 +1,22 @@
|
||||
from none.command import Session, CommandGroup
|
||||
|
||||
from . import expressions as expr
|
||||
|
||||
w = CommandGroup('weather')
|
||||
|
||||
|
||||
@w.command('weather', aliases=('天气', '天气预报'))
|
||||
async def weather(session: Session):
|
||||
city = session.require_arg('city', prompt_expr=expr.WHICH_CITY)
|
||||
await session.send_expr(expr.REPORT, city=city)
|
||||
|
||||
|
||||
@weather.args_parser
|
||||
async def _(session: Session):
|
||||
if session.current_key:
|
||||
session.args[session.current_key] = session.current_arg_text.strip()
|
||||
|
||||
|
||||
@w.command('suggestion', aliases=('生活指数', '生活建议', '生活提示'))
|
||||
async def suggestion(session: Session):
|
||||
await session.send('suggestion')
|
12
none_demo/plugins/weather/expressions.py
Normal file
12
none_demo/plugins/weather/expressions.py
Normal file
@ -0,0 +1,12 @@
|
||||
WHICH_CITY = (
|
||||
'你想知道哪个城市的天气呢?',
|
||||
'你要查询的城市是哪个呢?',
|
||||
'你要查询哪个城市呢?',
|
||||
'哪个城市呢?',
|
||||
'请告诉我你要查询的城市~',
|
||||
)
|
||||
|
||||
REPORT = (
|
||||
'你查询了{city}的天气',
|
||||
'{city}的天气是……',
|
||||
)
|
16
none_demo/run.py
Normal file
16
none_demo/run.py
Normal file
@ -0,0 +1,16 @@
|
||||
from os import path
|
||||
|
||||
import none
|
||||
|
||||
from none_demo import config
|
||||
|
||||
bot = none.create_bot(config)
|
||||
|
||||
none.load_builtin_plugins()
|
||||
plugin_dir = path.join(path.dirname(__file__), 'plugins')
|
||||
none.load_plugins(plugin_dir, 'none_demo.plugins')
|
||||
|
||||
app = bot.asgi
|
||||
|
||||
if __name__ == '__main__':
|
||||
bot.run(host=config.HOST, port=config.PORT)
|
Reference in New Issue
Block a user