{"library":"polars-hash","title":"polars-hash","description":"A Python library providing stable non-cryptographic and cryptographic hashing functions for Polars DataFrames. Version 0.5.6 supports algorithms like xxhash, murmurhash3, farmhash, SHA3 SHAKE128, UUID5, and H3 spatial index. It integrates directly into Polars expressions via `hash_` prefix. Maintained, with frequent releases.","language":"python","status":"active","last_verified":"Fri May 01","install":{"commands":["pip install polars-hash"],"cli":null},"imports":["import polars_hash","import polars_hash","import polars_hash"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import polars as pl\nimport polars_hash\n\ndf = pl.DataFrame({'text': ['hello', 'world']})\ndf_with_hash = df.with_columns(\n    polars_hash.hash_xxh3('text').alias('hash_xxh3'),\n    polars_hash.hash_murmurhash3('text').alias('hash_murmur')\n)\nprint(df_with_hash)","lang":"python","description":"Create a Polars DataFrame and add XXH3 and MurmurHash3 hash columns.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}