https://github.com/cuducos/ezz
🎦 ezz is a simple CLI tool to schedule Zoom meetings
https://github.com/cuducos/ezz
cli hacktoberfest rust zoom
Last synced: 10 months ago
JSON representation
🎦 ezz is a simple CLI tool to schedule Zoom meetings
- Host: GitHub
- URL: https://github.com/cuducos/ezz
- Owner: cuducos
- License: gpl-3.0
- Created: 2022-12-21T21:48:38.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-21T16:01:55.000Z (almost 2 years ago)
- Last Synced: 2025-04-03T16:21:36.412Z (over 1 year ago)
- Topics: cli, hacktoberfest, rust, zoom
- Language: Rust
- Homepage:
- Size: 88.9 KB
- Stars: 10
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# `ezz` [](https://github.com/cuducos/ezz/actions/workflows/tests.yml)
`ezz` (cheesy abbreviation for _easy Zoom_) is a simple CLI tool to schedule [Zoom](https://zoom.us) meetings.
## Install
You can download the binary for your platform from the [releases page](https://github.com/cuducos/ezz/releases), for example:
```console
$ curl -LO https://github.com/cuducos/ezz/releases/download/v0.1.0/ezz-x86_64-unknown-linux-gnu.tar.gz
$ tar -xzvf ezz-x86_64-unknown-linux-gnu.tar.gz
$ rm ezz-x86_64-unknown-linux-gnu.tar.gz
$ chmod a+x ezz
$ mv ezz /usr/local/bin/
```
### Compile from source
With [`cargo`](https://www.rust-lang.org/) installed:
```console
$ cargo install --path .
```
## Authentication
`ezz` requires three environment variables to authenticate using your Zoom account:
* `ZOOM_ACCOUNT_ID`
* `ZOOM_CLIENT_ID`
* `ZOOM_CLIENT_SECRET`
You can obtain yours in [Zoom's marketplace](https://marketplace.zoom.us/), under _Develop_.
## Usage
See all the options:
```console
$ ezz --help
ezz is a simple CLI tool to schedule Zoom meetings.
Usage: ezz [OPTIONS] --name --on --at
Options:
-n, --name Name of the meeting
-o, --on Date of the meeting in YYYY-MM-DD format or one of: today, tomorrow, monday, tuesday, wednesday, thursday, friday, saturday, sunday
-a, --at
### Example
Creating a Zoom meeting called _Aloha_ for next Friday at 5 pm:
```console
$ ezz --name Aloha --on friday --at 17:00
https://us02web.zoom.us/j/00000000000?pwd=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
```