WordWays is a word game where the goal is to transform the start word into the target word in as few moves as possible.

You can make two types of moves:
- Rearrange the letters, or
- Swap one letter for a new letter.
Each move must be a valid word in the English dictionary. Specifically, we use this list of words.
# Install Python 3.9
brew install [email protected]
# Install pip
brew install pip
# Create a virtual environment using python 3.9 (IMPORTANT! Use 3.9)
python3.9 -m venv venv
# Activate the virtual environment
source venv/bin/activate
# Install the requirements
pip install -r requirements.txt
# Run the script
python application.py
Open the browser and go to http://localhost:5000
Any time you want to run the script, you need to activate the virtual environment again.
Have fun