Path: csiph.com!fu-berlin.de!bofh.it!news.nic.it!robomod From: Edward Betts Newsgroups: linux.debian.bugs.dist,linux.debian.devel,linux.debian.maint.python Subject: Bug#1071444: ITP: python-fnvhash -- Pure Python FNV hash implementation Date: Sun, 19 May 2024 14:40:01 +0200 Message-ID: X-Mailbox-Line: From debian-bugs-dist-request@lists.debian.org Sun May 19 12:36:11 2024 Old-Return-Path: X-Spam-Flag: NO X-Spam-Score: 1.2 Reply-To: Edward Betts , 1071444@bugs.debian.org Resent-To: debian-bugs-dist@lists.debian.org Resent-Cc: debian-devel@lists.debian.org, debian-python@lists.debian.org, wnpp@debian.org X-Debian-Pr-Message: report 1071444 X-Debian-Pr-Package: wnpp MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Debian-Message: from BTS X-Mailing-List: archive/latest/1838313 List-ID: List-URL: Approved: robomod@news.nic.it Lines: 27 Organization: linux.* mail to news gateway Sender: robomod@news.nic.it X-Original-Date: Sun, 19 May 2024 13:32:54 +0100 X-Original-Message-ID: Xref: csiph.com linux.debian.bugs.dist:1197921 linux.debian.devel:111806 linux.debian.maint.python:15845 Package: wnpp Severity: wishlist Owner: Edward Betts X-Debbugs-Cc: debian-devel@lists.debian.org, debian-python@lists.debian.org * Package name : python-fnvhash Version : 0.1.0 Upstream Author : Lorenz Schori * URL : https://github.com/znerol/py-fnvhash * License : MIT Programming Lang: Python Description : Pure Python FNV hash implementation Pure Python implementation of the FNV (Fowler-Noll-Vo) hash family. Offers 100% test coverage and is suitable for applications where portability is more important than performance. . FNV is a non-cryptographic hash function that is fast and has excellent dispersion, making it suitable for hash tables and checksums. . Example usage: . >>> from fnvhash import fnv1a_32 >>> hex(fnv1a_32(b'foo')) '0xa9f37ed7' I plan to maintain this package as part of the Python team.