Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 541 Bytes

File metadata and controls

18 lines (13 loc) · 541 Bytes

Python Chat Server

This is a simple chat server written in Python.

Running the server

  • python main.py

Features

  • Login (without password. It is enough to send the username)
  • Send message and dispatch to the correct user
  • Store in memory the users with the status (online/offline)
  • Store in memory the off-line messages when the user is not online
  • Send the off-line messages when the user logs in
  • Check if the user is already logged in
  • Check if the destination user exists