Metadata-Version: 2.4
Name: rapidstr2int
Version: 1.0.7
Summary: Fast dependency-free string to 32-bit integer hashing (FNV-1a)
License: MIT
Keywords: hash,fnv,fnv1a,string,integer,uint32
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# rapidstr2int (Python)

Fast, dependency-free **string → 32-bit unsigned integer** hashing (FNV-1a over
UTF-8 bytes). Deterministic and stable across platforms.

```python
from rapidstr2int import str_to_int, str_to_hex
str_to_int("hello")  # 1335831723
str_to_hex("hello")  # "4f9f2cab"
```

Useful for hash tables, shard/bucket keys, bloom filters and cache keys.

Binary fixtures under `tests/` are exercised by the test suite as an input corpus.
