Metadata-Version: 2.4
Name: livesearch
Version: 1.1.0
Summary: Add your description here
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# LIVESEARCH

This is a very simple package

```python
import livesearch

items = [
    "pineapple",
    "banana",
    "apple",
]

results = livesearch.search_strings("app", items)

for res in results:
    print(res.get_obj())
```

This will print:
```
apple
pineapple
```

## Notes

- Regex always enabled

## FAQ

Is this the fastest search
> No

Will this be updated in the future
> If I feel like it, or people start using it a lot
