Metadata-Version: 2.4
Name: query-autocomplete
Version: 0.1.0
Summary: A lightweight skeleton package reserved for future query autocomplete tooling.
Author: Marcell Magda
License: MIT
Keywords: autocomplete,query,search
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# query-autocomplete

`query-autocomplete` is a minimal Python package skeleton intended to reserve the
project name on PyPI and serve as a starting point for future development.

## Installation

```bash
pip install query-autocomplete
```

## Usage

```python
from query_autocomplete import AutocompleteEngine

engine = AutocompleteEngine(["apple", "banana", "apricot"])
print(engine.suggest("ap"))
```

## Project Status

This package is currently a placeholder release while the full project is being
designed.

## License

MIT
