rapidfuzz-capi

C-API of RapidFuzz, which can be used to extend RapidFuzz from separate packages


License
MIT
Install
pip install rapidfuzz-capi==1.0.5

Documentation

RapidFuzz C-API

Continous Integration GitHub License

About

This package provides the C-API of RapidFuzz. It can be used inside the pyproject.toml to compile and extension module extending RapidFuzz. Providing this C-API in a separate package simplifies the build process. It allows the usage on platforms which are not supported by RapidFuzz, or for which RapidFuzz does not provide wheels (e.g. because they are not officially supported by numpy). Us this as:

[build-system]
requires = ["wheel", "setuptools", "rapidfuzz_capi==1.0.5"]

Similar to numpy the include path can be found in the following way:

import rapidfuzz_capi
rapidfuzz_capi.get_include()