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

https://github.com/splucas/word_finder

Python package to find words on a 2D Array / gameboard (graph)
https://github.com/splucas/word_finder

python wip wordsearch-solver

Last synced: about 1 month ago
JSON representation

Python package to find words on a 2D Array / gameboard (graph)

Awesome Lists containing this project

README

          

# Word Finder
Provides a basic framework to find and score words located on a 2D array. Think
Boggle(tm) or a word-search type puzzle.

### Building
- Clone the repo
- Setup a virtual environment: `python -m venv .vevn`
- Activate the venv
- Upgrade pip: `python -m pip install --upgrade pip`
- Install build: `pip install --upgrade build`
- cd to project root: `python -m build`

### Running Tests
- Requires [PyTest](https://docs.pytest.org/)
- Install: `pip install --upgrade pytest`