{"id":13502906,"url":"https://github.com/cuducos/ezz","last_synced_at":"2025-09-09T02:31:42.255Z","repository":{"id":76812783,"uuid":"580950677","full_name":"cuducos/ezz","owner":"cuducos","description":"🎦 ezz is a simple CLI tool to schedule Zoom meetings","archived":false,"fork":false,"pushed_at":"2024-09-21T16:01:55.000Z","size":91,"stargazers_count":10,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-03T16:21:36.412Z","etag":null,"topics":["cli","hacktoberfest","rust","zoom"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cuducos.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":["cuducos"]}},"created_at":"2022-12-21T21:48:38.000Z","updated_at":"2024-09-21T16:01:58.000Z","dependencies_parsed_at":"2024-01-18T23:25:50.483Z","dependency_job_id":"7755f1a8-6e3b-4b3d-899b-94d633e4c8cd","html_url":"https://github.com/cuducos/ezz","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cuducos/ezz","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cuducos%2Fezz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cuducos%2Fezz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cuducos%2Fezz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cuducos%2Fezz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cuducos","download_url":"https://codeload.github.com/cuducos/ezz/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cuducos%2Fezz/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274232626,"owners_count":25246027,"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-09T02:00:10.223Z","response_time":80,"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":["cli","hacktoberfest","rust","zoom"],"created_at":"2024-07-31T22:02:29.458Z","updated_at":"2025-09-09T02:31:39.847Z","avatar_url":"https://github.com/cuducos.png","language":"Rust","funding_links":["https://github.com/sponsors/cuducos"],"categories":["Rust"],"sub_categories":[],"readme":"# `ezz` [![Tests](https://github.com/cuducos/ezz/actions/workflows/tests.yml/badge.svg)](https://github.com/cuducos/ezz/actions/workflows/tests.yml)\n\n`ezz` (cheesy abbreviation for _easy Zoom_) is a simple CLI tool to schedule [Zoom](https://zoom.us) meetings.\n\n## Install\n\nYou can download the binary for your platform from the [releases page](https://github.com/cuducos/ezz/releases), for example:\n\n```console\n$ curl -LO https://github.com/cuducos/ezz/releases/download/v0.1.0/ezz-x86_64-unknown-linux-gnu.tar.gz\n$ tar -xzvf ezz-x86_64-unknown-linux-gnu.tar.gz\n$ rm ezz-x86_64-unknown-linux-gnu.tar.gz\n$ chmod a+x ezz\n$ mv ezz /usr/local/bin/\n```\n\n### Compile from source\n\nWith [`cargo`](https://www.rust-lang.org/) installed:\n\n```console\n$ cargo install --path .\n```\n\n## Authentication\n\n`ezz` requires three environment variables to authenticate using your Zoom account:\n\n* `ZOOM_ACCOUNT_ID`\n* `ZOOM_CLIENT_ID`\n* `ZOOM_CLIENT_SECRET`\n\nYou can obtain yours in [Zoom's marketplace](https://marketplace.zoom.us/), under _Develop_.\n\n## Usage\n\nSee all the options:\n\n```console\n$ ezz --help\nezz is a simple CLI tool to schedule Zoom meetings.\n\nUsage: ezz [OPTIONS] --name \u003cNAME\u003e --on \u003cDATE\u003e --at \u003cTIME\u003e\n\nOptions:\n  -n, --name \u003cNAME\u003e          Name of the meeting\n  -o, --on \u003cDATE\u003e            Date of the meeting in YYYY-MM-DD format or one of: today, tomorrow, monday, tuesday, wednesday, thursday, friday, saturday, sunday\n  -a, --at \u003cTIME\u003e            Time of the meeting in HH:MM format\n  -d, --duration \u003cDURATION\u003e  Duration of the meeting in minutes [default: 60]\n  -p, --password \u003cPASSWORD\u003e  Meeting password, max. 10 characters [default: auto-generated random password]\n  -t, --timezone \u003cTIMEZONE\u003e  Timezone (as in https://marketplace.zoom.us/docs/api-reference/other-references/abbreviation-lists/#timezones) for the meeting, e.g. America/Recife [default: your account's timezone]\n  -h, --help                 Print help information\n```\n\n### Example\n\nCreating a Zoom meeting called _Aloha_ for next Friday at 5 pm:\n\n```console\n$ ezz --name Aloha --on friday --at 17:00\nhttps://us02web.zoom.us/j/00000000000?pwd=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcuducos%2Fezz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcuducos%2Fezz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcuducos%2Fezz/lists"}