spylls icon indicating copy to clipboard operation
spylls copied to clipboard

Pure Python spell-checker, (almost) full port of Hunspell

Results 14 spylls issues
Sort by recently updated
recently updated
newest added

Does hunspell/spylls have facility to change the root of the word when making word forms? I am looking through cs_CZ and a lot of words are directly written there in...

The original Hunspell had two important utilities: ``` # print all forms for all words whose roots are given in `roots.dic` # and make use of affix rules defined in...

Well, there is obviously missing code for suffix crossproduct. Also, redirected info to stderr, stdout only produces words.

It seems that for some words the generator from suggest() never finishes. I am using the French dictionary from Firefox as my datasource. This works: ``` dictionary = Dictionary.from_zip("./fr.xpi") print(list(dictionary.suggest('sommes')))...

I'd like this feature : https://github.com/binhetech/CyHunspell#stemming

enhancement

Hello! Would it be possible to populate the dictionary by submitting a LIST with the content of .dic and .aff ? This is useful in the case of spark UDFs...

question

Hello, first of all: thanks for this project. I just try it for dictionary I maintained and it fails with : `ValueError: invalid literal for int() with base 10: 'šími/Fs'`...

enhancement

It seems that you implemented some algorithm that has a complexity related to the length of the input for "dictionary.lookup()", for example, the following script takes seconds to return an...

enhancement

Hi, I used to work with [pyhunspell](https://github.com/pyhunspell/pyhunspell) (which doesn't seem to be maintained anymore), then with [cyhunspell](https://github.com/MSeal/cython_hunspell) (which is currently broken on Python >=3.10). I'm now trying to switch to...