Pyspellchecker Versions Save

Pure Python Spell Checking http://pyspellchecker.readthedocs.io/en/latest/

v0.8.1

3 months ago
  • Update en, es, fr, and it to include country names; see issue #168

v0.8.0

4 months ago
  • Leveraged the dictionary files from levidromelist to attempt to clean up the en, es, fr, pt, 'de, and nldictionaries; Attempts to resolve issues #164, #155, #150, #140, #115, and #107; see issue #126
  • Added Italian language support; see #167

v0.7.3

4 months ago
  • Remove relative imports in favor of absolute imports
  • Add Path support for files
  • Added Dutch language support; see #162

v0.7.2

1 year ago
  • Added Latvian language support; see #145
  • Added Basque language support; see #146

v0.7.1-fix

1 year ago
  • Add py.typed to enable mypy support

v0.7.0

1 year ago
  • Backwards Combatibility Change:
    • spell.candidates and spell.correction now return None if there are no valid corrections or candidates
  • Remove misspelled words from issue #120
  • Update all default language dictionaries after updating the minimum frequency to 50 in scripts/build_dictionary.py
  • Fix float("nan") issue; see #125
  • Include Wikipedia's common typo list to the exclude listing; see #124
  • Add Arabic language support; see #129
  • Add ability to add the same word many times; see #132

v0.6.3

2 years ago
  • Added class method to be able to get a listing of all supported languages
  • Added type hinting
  • Updated English dictionary to remove incorrect cie words; see #112

v0.6.2

3 years ago
  • Add ability to load multiple languages at once; see discussion
  • Fix default tokenizer to not enforce lower case; #99

v0.6.1

3 years ago
  • Deprecated spell.word_probability since the name makes it seem that it is building a true probability; use spell.word_usage_frequency instead
  • Added Russian language dictionary; #91 Thanks @sviperm
  • Include __iter__ to both the SpellChecker and WordFrequency objects

v0.6.0

3 years ago
  • Remove python 2.7 support
  • Updated automated scripts/build_dictionary.py script to support adding missing words
  • Updated split_words() to attempt to better handle punctuation; #84
  • Load pre-built dictionaries from relative location for use in PyInstaller and other executable tools; #64