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, use:
$ pip install language_tool
Or using uv:
$ uv pip install language_tool
Prerequisites
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 8 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
language_tool-0.4.tar.gz
(27.8 kB
view details)
File details
Details for the file language_tool-0.4.tar.gz.
File metadata
- Download URL: language_tool-0.4.tar.gz
- Upload date:
- Size: 27.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"26.04","id":"resolute","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
370fc2ab69f5462366ac2bf8df222e21d770ec18ec1c776194d7d46bd2f09983
|
|
| MD5 |
08607efdc8691112612151821989bd61
|
|
| BLAKE2b-256 |
5cbc4c499d3452c5996c26052ef27f9bf2ecfecc8f76ab7bb37c56ea163802ff
|