boticordpy/examples/disnake/postdata.py

15 lines
281 B
Python
Raw Normal View History

2021-10-03 16:57:14 +03:00
from disnake.ext import commands
2021-10-03 16:56:16 +03:00
from boticordpy import BoticordClient
bot = commands.Bot(command_prefix="!")
boticord = BoticordClient(bot, "your-boticord-token", lib="disnake")
@bot.event
async def on_ready():
await boticord.Bots.post_stats()
bot.run("your-bot-token")