mirror of
https://github.com/boticord/boticordpy.git
synced 2024-11-11 19:07:29 +03:00
15 lines
363 B
Python
15 lines
363 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():
|
|
stats = {"servers": len(bot.guilds), "shards": bot.shard_count, "users": len(bot.users)}
|
|
await boticord.Bots.postStats(stats)
|
|
|
|
|
|
bot.run("your-bot-token")
|