import discord
from discord.ext import commands, tasks
bot = commands.Bot(command_prefix='.')
@tasks.loop(seconds=5)
async def test():
await bot.get_channel(787656357670420500).send('Work')
@bot.event
async def on_ready():
print('Bot logged as {}'.format(bot.user))
test.start()
token = 'token' # не сливаю токен, сорян.
bot.run(token)
Мне это кажется худшим вариантом, т.к при малейших изменениях полей придется снова их сортировать.
Хочется узнать как принято/правильно/делают другие.