For the complete documentation index, see llms.txt. This page is also available as Markdown.

Server Count

This will post the server count on the cybralist.com website

from cybralist import cybralist
from discord.ext import commands

client = commands.Bot(command_prefix="!") 
dbl = cybralist(client,"token of cybralist")

@client.event
async def on_ready():
  x = await dbl.serverCountPost()
  print(x)

client.run("token")

Last updated