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'])
Requirements
The installation process should take care of downloading LanguageTool. Otherwise, you can manually download LanguageTool-stable.oxt, rename it so it ends with “.zip”, then unzip it into a subdirectory inside the language_tool package.
LanguageTool requires Java 6 or later.