Recent Releases of https://github.com/barrust/pyspellchecker
https://github.com/barrust/pyspellchecker - Version 0.8.3
- Add
Persiandictionary; thanks @ashkanfeyzollahi - Add type check for data being passed to
spell.knownandspell.unknownfunctions; thanks @arvinnick - Minor optimization on updating dictionaries; thanks @RDxR10
- Python
Published by barrust 10 months ago
https://github.com/barrust/pyspellchecker - Version 0.8.2
- Update dictionaries; see issue #171 and discussion 172
- Python
Published by barrust about 1 year ago
https://github.com/barrust/pyspellchecker - Version 0.8.1
- Update
en,es,fr, anditto include country names; see issue #168
- Python
Published by barrust about 2 years ago
https://github.com/barrust/pyspellchecker - Version 0.8.0
- Leveraged the dictionary files from levidromelist to attempt to clean up the
en,es,fr,pt,'de, andnldictionaries; Attempts to resolve issues #164, #155, #150, #140, #115, and #107; see issue #126 - Added
Italianlanguage support; see #167
- Python
Published by barrust about 2 years ago
https://github.com/barrust/pyspellchecker - Version 0.7.3
- Remove relative imports in favor of absolute imports
- Add
Pathsupport for files - Added
Dutchlanguage support; see #162
- Python
Published by barrust about 2 years ago
https://github.com/barrust/pyspellchecker - Version 0.7.2
- Python
Published by barrust almost 3 years ago
https://github.com/barrust/pyspellchecker - Version 0.7.1
- Add
py.typedto enable mypy support
- Python
Published by barrust about 3 years ago
https://github.com/barrust/pyspellchecker - Version 0.7.0
- Backwards Combatibility Change:
spell.candidatesandspell.correctionnow returnNoneif 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
Arabiclanguage support; see #129 - Add ability to add the same word many times; see #132
- Python
Published by barrust over 3 years ago
https://github.com/barrust/pyspellchecker - Version 0.6.3
- Added class method to be able to get a listing of all supported languages
- Added type hinting
- Updated English dictionary to remove incorrect
ciewords; see #112
- Python
Published by barrust about 4 years ago
https://github.com/barrust/pyspellchecker - Version 0.6.2
- Add ability to load multiple languages at once; see discussion
- Fix default tokenizer to not enforce lower case; #99
- Python
Published by barrust almost 5 years ago
https://github.com/barrust/pyspellchecker - Version 0.6.1
- Deprecated
spell.word_probabilitysince the name makes it seem that it is building a true probability; usespell.word_usage_frequencyinstead - Added Russian language dictionary; #91 Thanks @sviperm
- Include
__iter__to both theSpellCheckerandWordFrequencyobjects
- Python
Published by barrust almost 5 years ago
https://github.com/barrust/pyspellchecker - Version 0.6.0
- Remove python 2.7 support
- Updated automated
scripts/build_dictionary.pyscript 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
- Python
Published by barrust about 5 years ago
https://github.com/barrust/pyspellchecker - Version 0.5.6
- NOTE: Last planned support for Python 2.7
- All dictionaries updated using the
scripts/build_dictionary.pyscript
- Python
Published by barrust about 5 years ago
https://github.com/barrust/pyspellchecker - Version 0.5.5
- Remove
encodefrom the call tojson.loads()
- Python
Published by barrust over 5 years ago
https://github.com/barrust/pyspellchecker - Version 0.5.4
- Reduce words in _editdistance_alt to improve memory performance; thanks blayzen-w
- Python
Published by barrust about 6 years ago
https://github.com/barrust/pyspellchecker - Version 0.5.3
- Handle memory issues when trying to correct or find candidates for extremely long words
- Python
Published by barrust over 6 years ago
https://github.com/barrust/pyspellchecker - Version 0.5.2
- Ensure input is encoded correctly
- Resolves #53
- Python
Published by barrust over 6 years ago
https://github.com/barrust/pyspellchecker - Version 0.5.1
- Python
Published by barrust over 6 years ago
https://github.com/barrust/pyspellchecker - Version 0.5.0
- Possible case sensitive dictionaries when using a custom dictionary; thanks @davido-brainlabs
- Better python 2.7 support
- Python
Published by barrust over 6 years ago
https://github.com/barrust/pyspellchecker - Version 0.4.0
- Add ability to pass tokenizer function to loading text or file
- Python
Published by barrust almost 7 years ago
https://github.com/barrust/pyspellchecker - Version 0.3.1
- Full python 2.7 support
- Python
Published by barrust about 7 years ago
https://github.com/barrust/pyspellchecker - Version 0.3.0
- Ensure all checks against the word frequency are lower case
- Slightly better performance on edit distance of 2
- Python
Published by barrust about 7 years ago
https://github.com/barrust/pyspellchecker - Version 0.2.2
- Fix packaging of non-wheel distribution
- Python
Published by barrust over 7 years ago
https://github.com/barrust/pyspellchecker - Version 0.2.1
- Ignore case for language identifiers
- Python
Published by barrust over 7 years ago
https://github.com/barrust/pyspellchecker - Version 0.2.0
- Changed
wordsfunction tosplit_wordsto differentiate with theword_frequency.wordsfunction - Added Portuguese dictionary:
pt - Add encoding argument to
gzip.openandopendictionary loading and exporting - Use of slots for class objects
- Python
Published by barrust over 7 years ago
https://github.com/barrust/pyspellchecker - Version 0.1.5
- Remove words based on threshold
- Add ability to iterate over words (keys) in the dictionary
- Add setting to to reduce the edit distance check see PR #17 Thanks @mrjamesriley
- Added Export functionality:
- json
- gzip
- Updated logic for loading dictionaries to be either language or local_dictionary
- Python
Published by barrust over 7 years ago
https://github.com/barrust/pyspellchecker - Version 0.1.4
- Ability to easily remove words
- Ability to add a single word
- Improved (i.e. cleaned up) English dictionary
- Python
Published by barrust over 7 years ago
https://github.com/barrust/pyspellchecker - Version 0.1.3
- Better handle punctuation and numbers as the word to check
- Python
Published by barrust over 7 years ago
https://github.com/barrust/pyspellchecker - Version 0.1.2
- Ensure resource folder is included in packaging
- Python
Published by barrust almost 8 years ago
https://github.com/barrust/pyspellchecker - Version 0.1.1
- Support multiple languages using dictionaries
- Added on-line documentation
- Python
Published by barrust almost 8 years ago
https://github.com/barrust/pyspellchecker - Version 0.1.0
- Move word frequency to its own class
- Add basic tests
- README documentation
- Python
Published by barrust about 8 years ago
https://github.com/barrust/pyspellchecker - Version 0.0.1
- Initial Implementation
- Python
Published by barrust about 8 years ago