Metadata-Version: 2.1
Name: murmurhash2
Version: 0.2.9
Summary: murmurhash2 for Python
Author: messense <messense@icloud.com>
Author-email: messense <messense@icloud.com>
License: MIT
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# murmurhash2-py

![CI](https://github.com/messense/murmurhash2-py/workflows/CI/badge.svg)
[![PyPI](https://img.shields.io/pypi/v/murmurhash2.svg)](https://pypi.org/project/murmurhash2)

32-bit murmurhash2 & 3 for Python

## Installation

```bash
pip install murmurhash2
```

## Usage


```python
from murmurhash2 import murmurhash2, murmurhash3


SEED = 3242157231
print(murmurhash2(b'key', SEED))
print(murmurhash3(b'key', SEED))
```

## License

This work is released under the MIT license. A copy of the license is provided in the [LICENSE](./LICENSE) file.


