An open API service indexing awesome lists of open source software.

https://github.com/wilsonle/cs375-lab-1


https://github.com/wilsonle/cs375-lab-1

Last synced: 9 months ago
JSON representation

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"
```