@tasks.loop(hours=8.0)
async def auto_send():
channel = await client.fetch_channel('channel_id')
await channel.send('GOOD MORNING!')
@client.command()
async def auto_send():
channel = await client.get_channel("channel_id")
while True:
await channel.send("message_1")
await asyncio.sleep(604800) # Неделя
await channel.send("message_1")
await asyncio.sleep(604800)