Metadata-Version: 2.1
Name: word-scramble
Version: 1.0.1
Summary: Python 3+ version scrabble word finder! Super efficient with hashtables!
Home-page: https://github.com/Harvard90873/word-scramble
Author: Harvard90873
Author-email: harvard90873@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
Requires-Dist: and-or-not
Requires-Dist: data-structures3x
Requires-Dist: python-algorithms-3x
Requires-Dist: spell-checker
Requires-Dist: termcolor

# Python basic data structures implementations

**word scramble** is a python package that looks for all possibilities given a scrambled word. 



# Installation
If not already, [install pip](https://pip.pypa.io/en/stable/installing/)

Install the package with `pip` or `pip3`:

```bash
pip install word-scramble
```

# Usage

```Python
from wsfinder import main
# Need to provide the language
finder = main.Finder("english")
scrambled_words = [
    "taurdesta",
    "achwt",
    "ilane",
    "alger",
    ]
res = {word:finder.find(word) for word in scrambled_words}
print(res)
```
Output:
```Python
{
    'taurdesta': ['saturated'],
    'achwt': ['watch'],
    'ilane': ['liane', 'laine', 'elian', 'anile', 'aline', 'alien'],'alger': ['regal', 'large', 'lager', 'glare', 'elgar', 'argle'],
}
```


