LanguageTool through server mode
Project description
Example usage
>>> from language_tool import LanguageTool >>> lang_tool = LanguageTool("en") >>> text = "but it’s suppose to be all yellowy." >>> matches = lang_tool.check(text) >>> len(matches) 2 >>> matches[0].ruleId, matches[0].replacements ('UPPERCASE_SENTENCE_START', ['But']) >>> matches[1].ruleId, matches[1].replacements ('SUPPOSE_TO', ['supposed'])
Installation
You can use the setup script:
$ ./setup.py install
On Windows, you can use one of the MSI binary packages provided on the download page.
Requirements
Python 3.2+ (or 2.7, using lib3to2)
The installation process should take care of downloading LanguageTool (it may take a few minutes). Otherwise, you can manually download LanguageTool-stable.zip and unzip it into a subdirectory inside the language_tool package.
LanguageTool requires Java 6 or later.