Metadata-Version: 2.4
Name: kathir-bloom-filter
Version: 0.1.0
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Summary: Bloom filter library implemented in Rust with Python bindings
Author-email: Kathir Meyyappan <kathirmeyn@gmail.com>
License: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Homepage, https://github.com/kathirmeyyappan/bloom-filter

# kathir-bloom-filter

Rust-based Bloom filter library with Python bindings built using **maturin** and **pyo3**.

## Development

- **Build wheel**:
  - `maturin build`
- **Develop in-place**:
  - `maturin develop`

After installation (e.g. `maturin develop`), you can use in Python:

```python
import kathir_bloom_filter

print(kathir_bloom_filter.add(1, 2))
```



