mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-25 01:25:04 +08:00
17 lines
436 B
Python
17 lines
436 B
Python
|
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
|