nonebot2/docs/guide/code/awesome-bot-7/awesome/plugins/scheduler.py

17 lines
436 B
Python
Raw Normal View History

2019-01-21 07:25:45 +00:00
from datetime import datetime
import nonebot
import pytz
from aiocqhttp.exceptions import Error as CQHttpError
@nonebot.scheduler.scheduled_job('cron', hour='*')
async def _():
bot = nonebot.get_bot()
now = datetime.now(pytz.timezone('Asia/Shanghai'))
try:
await bot.send_group_msg(group_id=672076603,
message=f'现在{now.hour}点整啦!')
except CQHttpError:
pass