{"id":15903114,"url":"https://github.com/erikh/gcal","last_synced_at":"2025-09-02T18:34:32.267Z","repository":{"id":188678568,"uuid":"679216324","full_name":"erikh/gcal","owner":"erikh","description":"Hand-Written Rust Google Calendar API","archived":false,"fork":false,"pushed_at":"2024-03-08T13:55:04.000Z","size":50,"stargazers_count":4,"open_issues_count":0,"forks_count":3,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-08-13T08:59:15.509Z","etag":null,"topics":[],"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/erikh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-08-16T10:55:15.000Z","updated_at":"2024-11-21T01:31:33.000Z","dependencies_parsed_at":null,"dependency_job_id":"61ea1f70-db33-4384-a03f-78925744ddc1","html_url":"https://github.com/erikh/gcal","commit_stats":{"total_commits":51,"total_committers":2,"mean_commits":25.5,"dds":"0.019607843137254943","last_synced_commit":"3cba9f589f92564d09f1f0e6430b27ab1cf4972d"},"previous_names":["erikh/gcal"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/erikh/gcal","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erikh%2Fgcal","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erikh%2Fgcal/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erikh%2Fgcal/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erikh%2Fgcal/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/erikh","download_url":"https://codeload.github.com/erikh/gcal/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erikh%2Fgcal/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273332121,"owners_count":25086949,"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","status":"online","status_checked_at":"2025-09-02T02:00:09.530Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2024-10-06T12:01:01.308Z","updated_at":"2025-09-02T18:34:32.226Z","avatar_url":"https://github.com/erikh.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gcal: Another Google Calendar API library for rust-lang\n\nI wrote this by hand because I found other clients hard to use for my use-cases. This provides an API layer into the Google Calendar API that is very minimal but also mostly complete. Types are fully represented.\n\n## Example\n\n```rust\nuse gcal::*;\n\n#[tokio::main]\nasync fn main() -\u003e Result\u003c(), anyhow::Error\u003e {\n    let access_key = std::env::args().nth(1).expect(\"Provide an access key\");\n    let now = chrono::Local::now();\n    let client = Client::new(access_key);\n    let client = EventClient::new(client);\n    let list = client.list(now - chrono::Duration::days(1), now).await?;\n\n    for event in \u0026list {\n        eprintln!(\"{} {}\", event.id, event.summary);\n    }\n}\n```\n\n## Status\n\nThis library is being maintained by hand and is not generated from any API source e.g. OpenAPI, because I can't seem to find an example of Google providing that directly. As a result, calls may be incorrect in spots, especially where they are supplied for completeness and not used in [saturn](https://github.com/erikh/saturn) which is what this library was built to power.\n\nIf documentation is sparse, I am sorry, if you need explanations please feel free to put in a ticket.\n\nI am happy to maintain the work within reason, but the goal is mostly to prop up saturn, and any major overhauls that would alter that charter would likely be rejected.\n\n## Author\n\nErik Hollensbe \u003cerik+github@hollensbe.org\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferikh%2Fgcal","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ferikh%2Fgcal","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferikh%2Fgcal/lists"}