Metadata-Version: 2.1
Name: hashell-py
Version: 0.1.1
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
License-File: LICENSE
Summary: Python bindings for hashell
Author: Grisshink
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Homepage, https://github.com/Grisshink/hashell-py

# hashell-py
Python bindings for hashell (see https://github.com/Grisshink/hashell)

## Example
```python
from hashell import hash_string

print(hash_string('some value', 16)) # 5149710603511119
```

## Building
```bash
python -m venv env
source env/bin/activate
pip install maturin
maturin develop
```

This should install hashell-py library in your python environment

