We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[todo] we should add __enter__ and __exit__ methods to the BloomFilter class. So we can use the context manager patterns.
__enter__
__exit__
BloomFilter
context manager
This would let us do:
with pybloomfilter.BloomFilter(...) as bf: bf.add(test_data)
_Originally posted by @prashnts in #14 (comment)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
[todo] we should add
__enter__
and__exit__
methods to theBloomFilter
class. So we can use thecontext manager
patterns.This would let us do:
_Originally posted by @prashnts in #14 (comment)
The text was updated successfully, but these errors were encountered: