axiak / pybloomfiltermmap

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

Initilise BloomFilter from file-like object #76

Open alexjironkin opened 8 years ago

alexjironkin commented 8 years ago

Hi,

I was wondering if we can add support for initialising Bloom Filter from file-like object instead of a file name.

I am trying to package BloomFilter written by bllom filter into an archive and then decompress and read pass it directly to BloomFilter constructor without having an intermediate file to write to.

Thanks