# language_tool_python
Python wrapper for LanguageTool.
This is a fork of https://github.com/myint/language_tool_python/ (which is a fork of https://bitbucket.org/spirit/language_tool) that produces more easily parsable results from the command-line.
## Example usage
From the interpreter:
>>> import language_tool_python
>>> tool = language_tool_python.LanguageTool('en-US')
>>> text = u'A sentence with a error in the Hitchhiker’s Guide tot he Galaxy'
>>> matches = 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 ...
Automatically apply suggestions to the text:
>>> language_tool_python.correct(text, matches) 'A sentence with an error in the Hitchhiker’s Guide to the Galaxy'
From the command line:
$ echo 'This are bad.' > example.txt $ language_tool_python example.txt example.txt:1:1: THIS_NNS[3]: Did you mean 'these'?
## Installation
To install via pip:
$ pip install --upgrade language_tool_python
If you are using Python 2, you’ll need to install 3to2 beforehand:
$ pip install --upgrade 3to2
To overwrite the host part of URL that is used to download LanguageTool-{version}.zip:
- SET language_tool_python_DOWNLOAD_HOST = [alternate URL]
## Prerequisites
Python 3.3+ (or 2.7)
lib3to2 (if installing for Python 2)
LanguageTool (Java 6.0+)
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_python package resides.
## Vim plugin
To use language_tool_python in Vim, install Syntastic and use the following settings:
let g:syntastic_text_checkers = ['language_tool_python']
let g:syntastic_text_language_tool_python_args = '--language=en-US'
Customize your language as appropriate.
Release files for language_tool_python 2.0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| language_tool_python-2.0.1.tar.gz | 32.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| language_tool_python-2.0.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 61.2 kB
Release files / language_tool_python-2.0.1.tar.gz
| Download URL | language_tool_python-2.0.1.tar.gz |
|---|---|
| Size | 32.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
8fbc76759c3245b88dc92d108dcdd9ee8d45b6b55303324c16893d8fc2d2bab1
|
|
BLAKE2b-256 checksum How to use checksums |
eb9d33178f25f9321ab34bee834030563628278cbfc31c12e4fb38d41c551dc4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.0.0.post20200309 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6
|
Release files / language_tool_python-2.0.1-py3-none-any.whl
| Download URL | language_tool_python-2.0.1-py3-none-any.whl |
|---|---|
| Size | 28.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
81c6ae09db84d10c3a74ac4da6149d52283be3b7393b54506fe3dd9e5396fae4
|
|
BLAKE2b-256 checksum How to use checksums |
34fdd26a05d9b96437ed6028746b90638f4cc7e282c6bc1fa2fe3dc637214456
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.0.0.post20200309 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6
|