Skip to content
Schuyler Tan (SLT World) edited this page Dec 9, 2025 · 2 revisions

slchat.py

slchat.py is an API wrapper for SLChat, written in python.

Quick Start

import slchat
import asyncio

client = slchat.Bot(prefix="!")

@client.command()
async def ping(ctx):
    await ctx.send("Pong")

asyncio.run(client.run("token", "bot_id"))

Clone this wiki locally