Metadata-Version: 2.1
Name: huntela
Version: 0.0.5
Summary: Find what you're looking for in a flash with Huntela - the ultimate search tool for Python.
Home-page: UNKNOWN
Author: Tomisin Abiodun
Author-email: decave.12357@gmail.com
License: UNKNOWN
Keywords: python,first package
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Education
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows


# Huntela

Huntela makes searching in Python very simple.

```python
>>> import huntela
>>> huntela.simple_search("app", ["app", "apple", "hello", "world"])
[{'index': 0, 'value': 'app', 'confidence': 1},
{'index': 1, 'value': 'apple', 'confidence': 0.6}]
```
With a variety of powerful algorithms to choose from, finding what you're looking for has never been easier.

From binary search to linear search and more, Huntela has everything you need to 
quickly and efficiently search through your data. With a simple, intuitive interface
and lightning-fast performance, Huntela is the go-to package for anyone who needs to search through data.

Whether you're a data scientist, engineer, or  developer, Huntela will help you find what you need.

## Installation
> Huntela officially supports Python 3.9 upwards. 

Request is available on PyPi and it can be installed using `pip`

```batch
python -m pip install huntela
```


