├── .github ├── actions │ └── build_editdistpy │ │ └── action.yml └── workflows │ ├── publish.yml │ ├── tests.yml │ └── wheels.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── editdistpy ├── __init__.py ├── _damerau_osa.cpp ├── _damerau_osa.h ├── _def.h ├── _helpers.h ├── _levenshtein.cpp ├── _levenshtein.h ├── damerau_osa.pyi ├── damerau_osa.pyx ├── levenshtein.pyi └── levenshtein.pyx ├── pyproject.toml ├── setup.py ├── tests ├── benchmarks.py ├── conftest.py ├── fortests │ ├── __init__.py │ └── helpers.py ├── test_damerau_osa.py └── test_levenshtein.py └── uv.lock /.github/actions/build_editdistpy/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/.github/actions/build_editdistpy/action.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/.github/workflows/wheels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | graft editdistpy 2 | 3 | global-exclude *.py[ocd] 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/README.md -------------------------------------------------------------------------------- /editdistpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/editdistpy/__init__.py -------------------------------------------------------------------------------- /editdistpy/_damerau_osa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/editdistpy/_damerau_osa.cpp -------------------------------------------------------------------------------- /editdistpy/_damerau_osa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/editdistpy/_damerau_osa.h -------------------------------------------------------------------------------- /editdistpy/_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/editdistpy/_def.h -------------------------------------------------------------------------------- /editdistpy/_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/editdistpy/_helpers.h -------------------------------------------------------------------------------- /editdistpy/_levenshtein.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/editdistpy/_levenshtein.cpp -------------------------------------------------------------------------------- /editdistpy/_levenshtein.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/editdistpy/_levenshtein.h -------------------------------------------------------------------------------- /editdistpy/damerau_osa.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/editdistpy/damerau_osa.pyi -------------------------------------------------------------------------------- /editdistpy/damerau_osa.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/editdistpy/damerau_osa.pyx -------------------------------------------------------------------------------- /editdistpy/levenshtein.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/editdistpy/levenshtein.pyi -------------------------------------------------------------------------------- /editdistpy/levenshtein.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/editdistpy/levenshtein.pyx -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/tests/benchmarks.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/fortests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fortests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/tests/fortests/helpers.py -------------------------------------------------------------------------------- /tests/test_damerau_osa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/tests/test_damerau_osa.py -------------------------------------------------------------------------------- /tests/test_levenshtein.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/tests/test_levenshtein.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mammothb/editdistpy/HEAD/uv.lock --------------------------------------------------------------------------------