Tal Einat

Results 43 comments of Tal Einat

Figured out myself that I need to add a test running command in `ci/setup.cfg`. I could still use some explanation about what is actually tested.

Why use `unittest` to run tests instead of `pytest`: In several projects I use a hierarchy of TestCase classes to test similar functions/classes. I tried to get the tests working...

If you plan to remove support for `nose` in the future, that would allow greatly simplifying this cookiecutter template. In that case it would probably be better to avoid accepting...

@ionelmc Hi, yes I still prefer unittest because it has the best support for TestCase abstract base classes, which I find myself using quite often. Apologies for not finishing this...

It would be great to have this, or https://github.com/jazzband/pip-tools/pull/1329, or any other solution for extras soon. I currently am having issues using pip-compile in a project requiring Celery with the...

Hi @yasinzaehringer-paradime, When the number of allowed changes is large enough compared to the length of the pattern, it's no longer useful to first search for short sub-sequences which must...

Hi, good question! This should be clearly addressed in the documentation. The main difference is that fuzzysearch is intended for searching through long texts or sequences for partially-matching sub-strings or...

> Awesome module, thanks! Thanks for the kind words, I'm happy you're finding it useful! It would be great to hear what you're using it for.

@jtlz2, which platform are you running this on? Windows / Linux / macOS, which exact version, 32 or 64 bit?

@jtlz2, could you try running the same code, with bytes objects rather than strings? I.e.: ```python fuzzysearch.find_near_matches(b'ABC 0123456', b'ABC', max_l_dist=1).next() ```