├── .coveragerc ├── .gitignore ├── LICENSE ├── README.md ├── cuckoofilter ├── __init__.py ├── bucket.py ├── cuckoofilter.py └── tests │ ├── __init__.py │ ├── test_bucket.py │ └── test_filter.py ├── example.py └── requirements.txt /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = true 3 | omit = */tests/* 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-the1/python-cuckoo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-the1/python-cuckoo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-the1/python-cuckoo/HEAD/README.md -------------------------------------------------------------------------------- /cuckoofilter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-the1/python-cuckoo/HEAD/cuckoofilter/__init__.py -------------------------------------------------------------------------------- /cuckoofilter/bucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-the1/python-cuckoo/HEAD/cuckoofilter/bucket.py -------------------------------------------------------------------------------- /cuckoofilter/cuckoofilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-the1/python-cuckoo/HEAD/cuckoofilter/cuckoofilter.py -------------------------------------------------------------------------------- /cuckoofilter/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cuckoofilter/tests/test_bucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-the1/python-cuckoo/HEAD/cuckoofilter/tests/test_bucket.py -------------------------------------------------------------------------------- /cuckoofilter/tests/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-the1/python-cuckoo/HEAD/cuckoofilter/tests/test_filter.py -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-the1/python-cuckoo/HEAD/example.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | mmh3 2 | --------------------------------------------------------------------------------