{"id":13672244,"url":"https://github.com/iddm/grammarbot-io","last_synced_at":"2025-05-14T18:32:21.876Z","repository":{"id":54391486,"uuid":"189544123","full_name":"iddm/grammarbot-io","owner":"iddm","description":"A rust grammarly bindings","archived":false,"fork":false,"pushed_at":"2023-12-05T17:53:41.000Z","size":25,"stargazers_count":6,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-05T18:37:29.060Z","etag":null,"topics":["grammar","grammarly","rust"],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iddm.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null},"funding":{"github":"iddm"}},"created_at":"2019-05-31T06:57:59.000Z","updated_at":"2024-07-31T11:31:01.000Z","dependencies_parsed_at":"2024-01-05T17:48:41.410Z","dependency_job_id":"18b5e08f-aa76-4394-9780-28c5d3c6b61b","html_url":"https://github.com/iddm/grammarbot-io","commit_stats":null,"previous_names":["vityafx/grammarly-rs","iddm/grammarbot-io","vityafx/grammarbot-io"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iddm%2Fgrammarbot-io","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iddm%2Fgrammarbot-io/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iddm%2Fgrammarbot-io/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iddm%2Fgrammarbot-io/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iddm","download_url":"https://codeload.github.com/iddm/grammarbot-io/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253830956,"owners_count":21971004,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["grammar","grammarly","rust"],"created_at":"2024-08-02T09:01:30.240Z","updated_at":"2025-05-14T18:32:21.504Z","avatar_url":"https://github.com/iddm.png","language":"Rust","funding_links":["https://github.com/sponsors/iddm"],"categories":["Rust"],"sub_categories":[],"readme":"[![Build status](https://api.travis-ci.com/iddm/grammarbot-io.svg?branch=master)](https://travis-ci.com/iddm/grammarbot-io)\n[![Crates](https://img.shields.io/crates/v/grammarbot-io.svg)](https://crates.io/crates/grammarbot-io)\n[![Docs](https://docs.rs/grammarbot-io/badge.svg)](https://docs.rs/grammarbot-io)\n[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)\n\n# Grammarbot.io\nEasy to use API for performing requests to the [GrammarBot.io](https://grammarbot.io) API for checking your grammar in your sentences.\n\n# Usage\n\n1. [Obtain the API key](https://www.grammarbot.io/signup)\n2. Use the library:\n\n```rust,no_run\nfn main() {\n    let string = \"Hello this grammarbot-io world!\";\n    let mut r = grammarbot-io::Request::from(string);\n    // With an API key:\n    println!(\"Response: {:#?}\", r.api_key(\"99999999\").send());\n}\n```\n\n# Examples\nYou may run an example which uses an environment variable `API_KEY`:\n\n```rust,no_run\nfn main() {\n    use std::env;\n\n    let string = \"Hello this grammarbot-io world!\";\n    let mut r = grammarbot-io::Request::from(string);\n    // With an API key:\n    println!(\n        \"Response: {:#?}\",\n        r.api_key(env::var(\"API_KEY\").expect(\"The API_KEY variable should be set.\"))\n            .send()\n    );\n}\n```\n\nby running\n\n```\nAPI_KEY=\u003cYOUR API KEY\u003e cargo run --example run_with_env\n```\n\n# Features\nThe crate contains the only one feature: **client** which currently uses\n`reqwest` crate to perform requests. If you don't want to use this feature,\nor you don't want the crate to fetch the network-related dependencies and link\nagainst them, you may perform the requests yourself, using the `HttpRequest`\nstructure, which contains all necessary information to perform the request, and\ncan be easily created from the `grammarbot-io::Request` object.\n\n# License\n[This project is licensed under the MIT license.](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiddm%2Fgrammarbot-io","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiddm%2Fgrammarbot-io","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiddm%2Fgrammarbot-io/lists"}