Skip to content

Instantly share code, notes, and snippets.

@nawfun-apps
nawfun-apps / nawchat-app.py
Last active July 22, 2024 16:36
chat application with python
from pywebio import *
from pywebio.output import *
from pywebio.input import *
import asyncio
from pywebio.session import defer_call, info as session_info, run_async
MAX_MESSAGES_CNT = 10 ** 4
chat_msgs = [] # (name, msg)
online_users = set()