Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/messense/murmurhash2-py
murmurhash2 for Python
https://github.com/messense/murmurhash2-py
murmurhash2
Last synced: 2 months ago
JSON representation
murmurhash2 for Python
- Host: GitHub
- URL: https://github.com/messense/murmurhash2-py
- Owner: messense
- License: mit
- Created: 2020-07-21T10:46:48.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-05-24T13:37:06.000Z (over 1 year ago)
- Last Synced: 2024-11-08T09:03:07.213Z (2 months ago)
- Topics: murmurhash2
- Language: Rust
- Homepage:
- Size: 35.2 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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, murmurhash3SEED = 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.