A simple library to asynchronously make API requests to Discord without having to worry about ratelimits.
import discord_limits
import asyncio
limits_client = discord_limits.DiscordClient("YOUR_TOKEN", "bot")
async def main():
await limits_client.channel.create_message("CHANNEL_ID", "Hello World!")
asyncio.run(main())