gitextract_gkc_80ex/ ├── .clang-format ├── .github/ │ ├── actionlint.yml │ ├── dependabot.yml │ └── workflows/ │ ├── benchmark-base-hash.yml │ ├── benchmark.yml │ ├── build.yml │ ├── draft-pdf.yml │ ├── superlinter.yml │ └── wheels.yml ├── .gitignore ├── .gitmodules ├── .markdown-lint.yml ├── .readthedocs.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── benchmark/ │ ├── benchmark.py │ ├── generate_table.py │ ├── plot_graph.py │ └── plot_graph_base_hash.py ├── docs/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS.md │ ├── Makefile │ ├── api.md │ ├── benchmark.md │ ├── changelog.md │ ├── conf.py │ ├── index.rst │ ├── make.bat │ └── quickstart.md ├── paper/ │ ├── paper.bib │ └── paper.md ├── pyproject.toml ├── src/ │ └── mmh3/ │ ├── __init__.pyi │ ├── hashlib.h │ ├── mmh3module.c │ ├── murmurhash3.c │ ├── murmurhash3.h │ └── py.typed ├── tests/ │ ├── helper.py │ ├── test_doctrings.py │ ├── test_free_threading.py │ ├── test_invalid_inputs.py │ ├── test_mmh3.py │ └── test_mmh3_hasher.py ├── tox.ini └── util/ ├── FILE_HEADER └── refresh.py