axiak / pybloomfiltermmap

Fast Python Bloom Filter using Mmap
http://axiak.github.com/pybloomfiltermmap/
MIT License
741 stars 137 forks source link

What is "[-]calg library: http://c-algorithms.sourceforge.net" trying to tell me? #87

Open rsharris opened 5 years ago

rsharris commented 5 years ago

I've installed pybloomfilter using pip, on a linux machine running python 2.7.15. When I do "import pybloomfilter", i get this message on the console as my python exits: [-]calg library: http://c-algorithms.sourceforge.net

Trying to figure out what this message means.

(1) Is this message coming from the pybloomfilter module or is it coming from somewhere in the guts of python?

(2) Is it trying to tell me it needs some module related to that sourceforge URL? Usually if a module is missing python gives me a traceback showing me where the exception occurred. But here I get no traceback, just the cryptic message above.

rsharris commented 5 years ago

Apparently the pip install has problems. See https://stackoverflow.com/questions/16174663/python-calg-library-in-windows-x64

I was able to solve the problem just like the stackoverflow gy did -- by installing with setup.py.

I noticed that pip said the version was 1.0, while the release tarball I got here is version 0.3.12. Is it possible that the pip package is unrelated to this repo?