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

17 lines
427 B
Python
Raw Normal View History

2018-08-26 04:35:53 +00:00
from datetime import datetime
import none
import pytz
from aiocqhttp.exceptions import Error as CQHttpError
@none.scheduler.scheduled_job('cron', hour='*')
async def _():
bot = none.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