A simple IRC client and server.
-
Create your virtual environment and install the required packages
python -m venv env
source env/bin/activate
(orenv\Scripts\activate.bat
for Windows users)
pip install -r requirements.txt
-
Run the server
cd src
python irc_server.py --port <port>
-
Run the client
python irc_client.py --host <host> --port <port>