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)
- Host: GitHub
- URL: https://github.com/splucas/word_finder
- Owner: splucas
- License: other
- Created: 2023-05-20T19:46:23.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-25T21:29:34.000Z (about 3 years ago)
- Last Synced: 2025-02-26T21:15:11.829Z (over 1 year ago)
- Topics: python, wip, wordsearch-solver
- Language: Python
- Homepage:
- Size: 709 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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`