> For the complete documentation index, see [llms.txt](https://docs.cybralist.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cybralist.com/python-package/server-count.md).

# Server Count

```
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")
```
