https://github.com/smolgroot/findwords
Find all words from the dictionary based on a list of letters
https://github.com/smolgroot/findwords
Last synced: 8 months ago
JSON representation
Find all words from the dictionary based on a list of letters
- Host: GitHub
- URL: https://github.com/smolgroot/findwords
- Owner: smolgroot
- License: mit
- Created: 2024-02-18T20:32:47.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-22T01:50:19.000Z (over 2 years ago)
- Last Synced: 2025-10-12T04:06:36.601Z (8 months ago)
- Language: Python
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# findWords
Find all dictionary words based on a list of letters
## From CLI (using `click`)
```bash
python cli.py
```
## Exposing a web endpoint (using `flask`)
```bash
python main.py
```
then use
```
curl http://127.0.0.1:5000/?letters=oustpa
```