language_tool_python is a Python wrapper for LanguageTool,
a free, multilingual, non-AI, open-source grammar, style, and spell checker. This python wrapper lets you detect and fix errors from
a Python script or from the command line, against a local Java server, the public
LanguageTool API, or your own remote server.
- Python
>=3.10(tested up to 3.15) - Java
>=17to run a local LanguageTool server (default download:6.8). See the installation docs for full Java version details.
pip install --upgrade language_tool_pythonimport language_tool_python
with language_tool_python.LanguageTool("en-US") as tool:
matches = tool.check("A sentence with a error in the Hitchhiker's Guide tot he Galaxy")
print(len(matches))
# β 2
print(matches[0].message)
# β 'Use "an" instead of "a" if the following word starts with a vowel sound'
print(matches[0].replacements)
# β ['an']
print(matches[0].offset)
# β 16import language_tool_python
with language_tool_python.LanguageToolPublicAPI("en-US") as tool:
matches = tool.check("This are wrong.")
print(len(matches))
# β 2import language_tool_python
with language_tool_python.LanguageTool(
"en-US",
remote_server="http://my-languagetool-server:8081",
) as tool:
print(tool.correct("I has a problem."))
# β I have a problem.echo "This are bad." | language_tool_python -l en-US -
language_tool_python -l en-US --apply input.txtFor the full API reference, configuration options, CLI usage, and more examples, see the documentation.
- Docs: https://language-tool-python.readthedocs.io/en/latest/
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Security: SECURITY.md
This project follows Semantic Versioning (MAJOR.MINOR.PATCH):
- PATCH - backwards-compatible bug fixes.
- MINOR - new backwards-compatible features.
- MAJOR - breaking changes. Deprecated APIs are removed at the next major version.
Versions are tagged in the git repository and can be found on PyPI.
make install # Install dev dependencies
make format # Format code
make check # Lint / format / types
make test # TestsGPL-3.0-only. See LICENSE.
This project is based on the original language-check project:
https://github.com/myint/language-check/
