Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

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