grammarly 0.3.1

This crate allows you to check your texts for grammar using the grammarly service.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
fn main() {
    use std::env;

    let string = "Hello this grammarly world!";
    let mut r = grammarly::Request::from(string);
    // With an API key:
    println!(
        "Response: {:#?}",
        r.api_key(env::var("API_KEY").expect("The API_KEY variable should be set."))
            .send()
    );
}