Metadata-Version: 2.4
Name: strtoolz
Version: 0.0.1
Summary: Extra string search and manipulation functions
Author: Alex Willmer
Author-email: Alex Willmer <alex@moreati.org.uk>
License-Expression: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Text Processing
Requires-Dist: hypothesis>=6.15.0 ; extra == 'test'
Requires-Dist: pytest>=6.2.5 ; extra == 'test'
Requires-Python: >=3.10
Project-URL: Homepage, https://github.com/moreati/strtoolz
Project-URL: Repository, https://github.com/moreati/strtoolz
Project-URL: Tracker, https://github.com/moreati/strtoolz/issues
Project-URL: Changelog, https://github.com/moreati/strtoolz/blob/main/CHANGELOG.md
Provides-Extra: test
Description-Content-Type: text/markdown

# strtoolz

Extra string search and manipulation functions for Python.

- `find_all()`
- `find_iter()`

## Usage

```python
>>> import strtoolz
>>> strtoolz.find_all("The rain in Spain falls mainly on the plain", 'ain')
[5, 14, 25, 40]
```

## Installtion

```sh
uv pip install strtoolz
```

or

```sh
pip install strtoolz
```

## Licence

MIT
