Metadata-Version: 2.4
Name: strox
Version: 0.1.5
Summary: Find strings that matches approximately the given query
Author: Havsalt
Author-email: Havsalt <77575424+Havsalt@users.noreply.github.com>
License-Expression: MIT
License-File: LICENSE
Requires-Dist: rich-argparse~=1.7 ; extra == 'cli-color'
Requires-Python: >=3.10
Provides-Extra: cli-color
Description-Content-Type: text/markdown

# Strox - String Approximate

Find strings that matches approximately the given query.

## Running as tool

You can run `strox` from the terminal if installed, usually through `pipx install` or `uv tool install`.

To enable colors, install with the `cli-color` extra:

```bash
pipx install strox[cli-extra]
# or
uv tool install strox[cli-extra]
```

Example of querying for the closest matching option, with _weight_ parameter:

```bash
strox "an" "Apple pie" "Indigo" "Banana" --insertion-cost 0.1
# Result: "Banana"
```

**Tip**: Run `strox --help` for more options.

## License

MIT
