language_tool 2.2.0 copy "language_tool: ^2.2.0" to clipboard
language_tool: ^2.2.0 copied to clipboard

Dart library for checking text for grammar and spelling mistakes using the language tool API.

LanguageTool API #

style: very good analysis License: MIT CodeFactor

Dart library for checking text for grammar and spelling mistakes using the LanguageTool API.

๐Ÿš€ Features #

Checking for the following:

  • spelling mistakes
  • grammatical mistakes
  • logical mistakes

The free version has 20 requests per minute.

You can currently only use the free version of this API that does not require an API key.

๐Ÿงช Usage #

Use the LanguageTool Object to check your text with the LanguageTool API.

final tool = LanguageTool();

final result = await tool.check('what happened at 5 PM on Monday, 27 May 2007?')

result.forEach(print);
// This prints 3 mistakes.
// 1. This sentence does not start with an uppercase letter.
// 2. Using PM and afternoon together is redundant.
// 3. The date 27 May 2007 is not a Monday, but a Sunday.

To get all available languages, call LanguageTool.languages.

You can find a more advanced example in the example tab.

20
likes
140
pub points
75%
popularity

Publisher

verified publisherclevertasks.de

Dart library for checking text for grammar and spelling mistakes using the language tool API.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

http

More

Packages that depend on language_tool