boticordpy/examples/postdata.py
2021-10-03 16:56:16 +03:00

14 lines
266 B
Python

from discord.ext import commands
from boticordpy import BoticordClient
bot = commands.Bot(command_prefix="!")
boticord = BoticordClient(bot, "your-boticord-token")
@bot.event
async def on_ready():
await boticord.Bots.post_stats()
bot.run("your-bot-token")