JoshData / fast_diff_match_patch

Python package for Google's diff-match-patch native C++ implementation.
https://pypi.org/project/fast-diff-match-patch/
Apache License 2.0
73 stars 27 forks source link

Missing API? #17

Closed mustafa0x closed 2 years ago

mustafa0x commented 2 years ago

https://github.com/google/diff-match-patch/wiki/API

It seems like only diff and match_main are supported?

I did look at https://github.com/leutloff/diff-match-patch-cpp-stl/blob/master/diff_match_patch.h and it seems to contain the API functions, but I don't see them in this wrapper.

If this wrapper is limited to diff and match_main perhaps mention that in the README?

JoshData commented 2 years ago

I only implemented what I needed. I would accept a pull request that implements the others (and includes documentation in the README).

mustafa0x commented 2 years ago

Thanks for the reply! Unfortunately I have insufficient C++ knowledge, but maybe someone else will volunteer.