LanguageTool through server mode
Project description
Python wrapper for LanguageTool.
This is a fork of https://bitbucket.org/spirit/language_tool that produces more easily parsable results from the command-line.
Example usage
>>> import language_check >>> lang_check = language_check.LanguageTool("en-US") >>> text = "A sentence with a error in the Hitchhiker’s Guide tot he Galaxy" >>> matches = lang_check.check(text) >>> len(matches) 2
Check out some Match object attributes:
>>> matches[0].fromy, matches[0].fromx (0, 16) >>> matches[0].ruleId, matches[0].replacements ('EN_A_VS_AN', ['an']) >>> matches[1].fromy, matches[1].fromx (0, 50) >>> matches[1].ruleId, matches[1].replacements ('TOT_HE', ['to the'])
Print a Match object:
>>> print(matches[1]) Line 1, column 51, Rule ID: TOT_HE[1] Message: Did you mean 'to the'? Suggestion: to the ... with a error in the Hitchhiker’s Guide tot he Galaxy ^^^^^^
Automatically apply suggestions to the text:
>>> language_check.correct(text, matches) 'A sentence with an error in the Hitchhiker’s Guide to the Galaxy'
Installation
To install the package for Python 3, use:
$ ./setup.py install
Prerequisites
Python 3.2+ (or 2.7)
lib3to2 (if installing for Python 2)
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 where the language_check package resides.
LanguageTool requires Java 6 or later.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file language-check-0.5.1.tar.gz
.
File metadata
- Download URL: language-check-0.5.1.tar.gz
- Upload date:
- Size: 31.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 09f64fa4f36d794382ac8131cbdc138b5076d6d3d90c9b382dcad3f67692e4b8 |
|
MD5 | a7731f7bb767113c9d456c9883df41cd |
|
BLAKE2b-256 | 78e5884ed2e86293723330082e43202ab04b5c59facc5fd0b3e2b0565380f84d |