I\'m designing a bloom filter and I\'m wondering what the most performant bit array implementation is in Python.
The nice thing about Python is that it can handle ar
Perhaps check this out. It's pure python, and uses an array of int's: http://stromberg.dnsalias.org/svn/bits/trunk/
Also, there are already several Python bloom filters. Check Pypi: https://pypi.python.org/pypi?%3Aaction=search&term=bloom+filter&submit=search
HTH