import aiocron
@aiocron.crontab('*/5 * * * *') async def job(): print('I am a job')
@aiocron.crontab('1-10 * * * *') async def job(): print('I am a job')
import discord from discord.ext import commands
bot = commands.Bot(command_prefix='!')
@aiocron.crontab('*/5 * * * *') async def reminder(): channel = bot.get_channel(123456789) # replace with your channel id await channel.send('Hello')
以上是三个常见解决方法,若还有其他问题,建议检查和修改机器人的权限及api token等相关问题。