Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jwilk/mwic
Misspelled Words In Context
https://github.com/jwilk/mwic
qa spelling
Last synced: about 1 month ago
JSON representation
Misspelled Words In Context
- Host: GitHub
- URL: https://github.com/jwilk/mwic
- Owner: jwilk
- License: mit
- Created: 2015-05-30T18:38:12.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-05-14T09:04:43.000Z (8 months ago)
- Last Synced: 2024-08-13T03:06:09.443Z (4 months ago)
- Topics: qa, spelling
- Language: Python
- Homepage: https://jwilk.net/software/mwic
- Size: 562 KB
- Stars: 38
- Watchers: 4
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.rst
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
Overview
========**mwic** is a spell-checker that groups possible misspellings and shows them in
their contexts. This is useful for checking technical documents, which often
contain words that are not included in standard dictionaries... (don't include in release tarballs)
Example
-------.. image:: doc/screenshot.svg
..
Prerequisites
=============The following software is needed to run mwic:
* Python ≥ 3.7;
* PyEnchant_, Python bindings for the Enchant_ spellchecking system;
* regex_, alternative regular expression module for Python.
Additionally, the following software is needed to rebuild the manual page from
source:* docutils_ ≥ 0.6.
For pip users::
python3 -m pip install pyenchant regex
python3 -m pip install docutilsFor Debian users::
apt-get install python3-enchant python3-regex
apt-get install python3-docutils.. _regex:
https://pypi.org/project/regex/
.. _pyenchant:
https://pypi.org/project/pyenchant/
.. _Enchant:
https://abiword.github.io/enchant/
.. _docutils:
https://docutils.sourceforge.io/.. vim:ts=3 sts=3 sw=3 ft=rst