https://github.com/wilsonle/cs375-lab-1
https://github.com/wilsonle/cs375-lab-1
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/wilsonle/cs375-lab-1
- Owner: WilsonLe
- Created: 2023-09-21T19:07:26.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-23T14:14:46.000Z (almost 3 years ago)
- Last Synced: 2024-12-27T02:16:56.772Z (over 1 year ago)
- Language: Python
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CS375 - Wilson Le & Krystal Ly
# Prerequisite
Setup python virtual environment (optional)
```sh
# On Linux/MacOS
python -m venv .venv
source .venv/bin/activate
```
Install all necessary dependencies
```sh
pip install -r requirements.txt
```
# Server
To start the web server:
```sh
python server.py
```
# Client
To run the client connecting to the web server:
```sh
python client.py "127.0.0.1" "7345" "foobar.html"
```