I have a large string I would like to send:
my_text = "...greater.than.4096.chars..."
embed = discord.Embed(title='Hello World')
embed.description = my_text
await ctx.send(embed=embed)
However I get this error:
In embed.description: Must be 4096 or fewer in length.
Is there a way in discord.py
to automatically split the string into multiple chunks to be sent?
In discord.js, they have a way to do so like this:
.send(data, { split: true })
Is there something similar for discord.py? Or do I have to write my own solution?