Skip to main content

Checks grammar using LanguageTool.

Project description

Python wrapper for LanguageTool.

Build status

This 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_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'

From the command line:

$ language-check example.txt
foo.txt:1:17: Use 'an' instead of 'a' if the following word starts with a
    vowel sound, e.g. 'an article', 'an hour'; suggestions: an
foo.txt:1:51: Did you mean 'to the'?; suggestions: to the

Installation

To install via pip:

$ pip install --user --upgrade language-check

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_check package resides.

LanguageTool requires Java 6 or later.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

language-check-0.5.2.tar.gz (31.6 kB view details)

Uploaded Source

File details

Details for the file language-check-0.5.2.tar.gz.

File metadata

File hashes

Hashes for language-check-0.5.2.tar.gz
Algorithm Hash digest
SHA256 f63b53b34f2c84e69c9c280a3d263175e730266ab83690b86c5d5d2065c76c32
MD5 c89f21292de0841e91f02199b0793461
BLAKE2b-256 78f6d523d23f451ffbd4c7fa8bbf7806ccb6188693e430c325144dadc9914cb7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page