grammarly 0.1.0

This crate allows you to check your texts for grammar using the grammarly service.
Documentation

Build status Crates Docs MIT licensed

Grammarly

Easy to use API for performing requests to the Grammarly API for checking your grammar in your sentences.

Usage

  1. Obtain the API key
  2. Use the library (TBA).
fn main() {
    let string = "Hello this grammarly world!";
    let mut r = grammarly::Request::from(string);
    // With an API key:
    println!("Response: {:#?}", r.api_key("99999999").send());
    // Without an API key:
    println!("Response: {:#?}", r.send());
}

Features

The crate contains the only one feature: client which currently uses reqwest crate to perform requests.

License

This project is licensed under the MIT license.