Add Python client

This commit is contained in:
Maxwell Jeffress 2025-03-14 08:56:02 +11:00
parent eea257d617
commit 0a029fcc23
2 changed files with 81 additions and 0 deletions

13
client-python/README.md Normal file
View File

@ -0,0 +1,13 @@
## Chookchat Python Client
This is an example client for Chookchat, written in Python. It is very simplistic. It connects to the Websocket, and prints recieved messages.
This would be a good baseline for a GUI client with tkinter, or a bot for Chookchat linking it to other services.
Not much else to say.
### Running
First, `pip3 install websocket-client rel`. If you need, create a virtual environment for Python.
Then, run with `python3 client.py`

68
client-python/client.py Normal file
View File

@ -0,0 +1,68 @@
import websocket
import json
import _thread
import time
import rel
from google import genai
username = "(insert username here)"
token = "(insert token here)"
def joinRoom(roomName):
ws.send(json.dumps({
"type": "joinRoom",
"username": username,
"token": token,
"room": roomName,
"content": ""
}))
def sendMessage(content):
ws.send(json.dumps({
"type": "message",
"username": username,
"token": token,
"content": content
}))
def sendTyping(content):
ws.send(json.dumps({
"type": "typing",
"username": username,
"token": token,
"content": content
}))
def on_message(ws, message):
print("Message received: " + message)
if message == "ping":
ws.send("pong")
def on_error(ws, error):
print("Error:", error)
def on_close(ws, close_status_code, close_msg):
print(f"Connection closed: {close_status_code} - {close_msg}")
def on_open(ws):
print("Opening connection to Chookchat...")
joinRoom("general")
ws.send(json.dumps({
"type": "connect",
"username": username,
"token": token,
"content": username + " joined the room!"
}))
if __name__ == "__main__":
websocket.enableTrace(True)
ws = websocket.WebSocketApp("wss://bobcompass.online/api/websocket",
on_open=on_open,
on_message=on_message,
on_error=on_error,
on_close=on_close
)
ws.run_forever(dispatcher=rel, reconnect=5, ping_interval=30, ping_timeout=10)
rel.signal(2, rel.abort)
rel.dispatch()