Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 787 Bytes

README.md

File metadata and controls

33 lines (20 loc) · 787 Bytes

![Documentation Status] Version

discord_limits

A simple library to asynchronously make API requests to Discord without having to worry about ratelimits.



Basic usage

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())

Requires: