python-cityhash icon indicating copy to clipboard operation
python-cityhash copied to clipboard

Python bindings for FarmHash and CityHash

Results 5 python-cityhash issues
Sort by recently updated
recently updated
newest added

Is possible to integrate python-cityhash with numba? https://numba.readthedocs.io/en/stable/user/cfunc.html

I'm getting different hash value outputs from python-cityhash than from other implementations. E.g. [fasthash::city::Hash64 - Rust](https://docs.rs/fasthash/0.4.0/fasthash/city/struct.Hash64.html) ```Rust assert_eq!(Hash64::hash(b"hello"), 2578220239953316063); ``` vs ``` >>> cityhash.CityHash64WithSeeds(b"BU9[85WWp/ HASH!", 2239407493875278174, 1318041201923111131) 5218636442198533358 ``` I...

Would be great to get wheels for 3.12 published. Thanks!

I see recent commits for python 3.14: * https://github.com/escherba/python-cityhash/commit/753da7f41fd4d8a5e8c5340ec6981d547a33ac4c * https://github.com/escherba/python-cityhash/commit/28696ac34bd3c2c1c98d406216adddc5aee1eb66 But while there's a new 0.4.10 release, it does not include 3.14 wheels on pypi: https://pypi.org/project/cityhash/0.4.10/#files Could those be...