Skip to content

Releases: barrust/pyspellchecker

Version 0.8.1

20 Jan 13:04
Compare
Choose a tag to compare
  • Update en, es, fr, and it to include country names; see issue #168

Version 0.8.0

15 Jan 13:19
Compare
Choose a tag to compare

Version 0.7.3

27 Dec 15:28
Compare
Choose a tag to compare
  • Remove relative imports in favor of absolute imports
  • Add Path support for files
  • Added Dutch language support; see #162

Version 0.7.2

26 Apr 01:48
Compare
Choose a tag to compare
  • Added Latvian language support; see #145
  • Added Basque language support; see #146

Version 0.7.1

15 Dec 03:38
Compare
Choose a tag to compare
  • Add py.typed to enable mypy support

Version 0.7.0

29 Aug 23:50
1ff6693
Compare
Choose a tag to compare
  • 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

Version 0.6.3

15 Jan 17:01
Compare
Choose a tag to compare
  • 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

Version 0.6.2

27 Mar 12:30
Compare
Choose a tag to compare
  • Add ability to load multiple languages at once; see discussion
  • Fix default tokenizer to not enforce lower case; #99

Version 0.6.1

09 Mar 12:10
Compare
Choose a tag to compare
  • 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

Version 0.6.0

23 Feb 02:45
Compare
Choose a tag to compare
  • 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