aspell-python icon indicating copy to clipboard operation
aspell-python copied to clipboard

Python wrapper for aspell (C extension and python version)

Results 13 aspell-python issues
Sort by recently updated
recently updated
newest added

Some tests are failing with Python 3.10. ```bash ============================= test session starts ============================== platform linux -- Python 3.10.1, pytest-6.2.5, py-1.11.0, pluggy-1.0.0 rootdir: /build/aspell-python-py3-1.15 collected 17 items test/unittests.py ..........FFF..s. [100%] ===================================...

I tried to install using pip3 on MacOS Sierra, using homebrew and python 3.6.2, and I get the following error (aspell.h not found): ``` >$ pip3 install aspell-python-py3 Collecting aspell-python-py3...

hi, thanks for the great library! here is a minor improvement: 1) assume i want to add 100 new people names (which Aspell is not aware of). 2) i would...

On Mac OSX 10.13.6 (High Sierra) with Miniconda Python 2.7.15, I download and ran the build command but gcc failed due to the lack of aspell.h. My Miniconda directory (to...

How can we control the number of suggestions returned, or sensitivity? For example, when doing: `s.suggest('wuld')`, I get: `['wild', 'would', 'Wald', 'weld', 'wold']` But the word 'world' is missing. Is...

`ConfigKeys` says `extra-dicts` takes a list: ```python >>> import aspell >>> aspell.ConfigKeys()['extra-dicts'] ('list', [], 'extra dictionaries to use') ``` But passing it as a list doesn't work: ```python >>> aspell.Speller(('extra-dicts',...

bug

Thanks for you work. Right now, it's not possible to change the configuration. However, with command line, it's possible to improve the spell checking accuracy by changing the suggestion mode...

enhancement

Hi, I've got a question, I'm trying to use aspell-python with a Dutch dictionary and wordlist. How can I set the Configkeys 'data-dir' and 'dict-dir' to point to my directories?...