Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 694 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 694 Bytes

Socket Chatroom

Introduction

A simple program that enables client to chat with each other through a server, which broadcast the message to all clients with encoding. Client needs to enter correct code to decode the encoded message.

Demo

DEMO video

Usage

Open one terminal for server and others for client.

In the server terminal, run the following command:

python3 server.py

In the client terminal, run the following command:

python3 client.py {server_ip} {server_port}

The default server ip is localhost(127.0.0.1) and port is 5002