LanguageTool through server mode
Project description
Example usage
>>> import language_tool >>> lang_tool = language_tool.LanguageTool("en-US") >>> text = "A sentence with a error in the Hitchhiker’s Guide tot he Galaxy" >>> matches = lang_tool.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_tool.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
To install the package for Python 2, use:
$ python2 setup.py install
On Windows, you may use one of the MSI binary packages provided on the download page.
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_tool 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_tool-0.3.tar.bz2
.
File metadata
- Download URL: language_tool-0.3.tar.bz2
- Upload date:
- Size: 15.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4c956199714b8d587a9fdbb4a801d908a5a67b2f8bca3c4f225e4bc93134570 |
|
MD5 | 92998800322c31ace512c6a3ddc9045d |
|
BLAKE2b-256 | d4176379de357f8783f7771c253a18475473ff04d5107e5a1fb27b113f46ae20 |