Skip to content

A Python client for interfacing with the Zoom API to perform various tasks.

License

Notifications You must be signed in to change notification settings

UCBoulder/zoom_client

Repository files navigation

Zoom Client

A Python client for interfacing with the Zoom API to perform various tasks.

Requirements and Documentation

Zoom API documentation can be found at the following URL: https://marketplace.zoom.us/docs/api-reference/zoom-api

Installation

# from pypi
pip install zoom_client

# from github
pip install git+https://github.com/CUBoulder-OIT/zoom_client@main#egg=zoom_client

Usage

  1. Ensure requirements outlined above are completed.
  2. Provide necessary <bracketed> areas in examples/sample_config.json specific to your account

Example Usage

from zoom_client.controller import controller

#open config file with api key/secret information
config_file = open(run_path+"/config/config.json")
config_data = json.load(config_file)

#create Zoom python client
zoom = controller.controller(config_data)

zoom.users.get_current_users()
zoom_user_counts = zoom.users.get_current_user_type_counts()

Linting and Testing

This repo makes use of Black and Bandit for linting and PyTest for testing. See below for an example of how to peform these checks manually.

# assumes pwd as repo dir

# black linting
black . --check

# bandit linting
bandit -r . -x ./tests

# pytest testing
pytest

Distribution Packaging

python setup.py sdist bdist_wheel

Notice

All trademarks, service marks and company names are the property of their respective owners.

Reference in this site to any specific commercial product, process, or service, or the use of any trade, firm or corporation name is for the information and convenience of the public, and does not constitute endorsement, recommendation, or favoring by the University of Colorado.

License

MIT - See LICENSE

About

A Python client for interfacing with the Zoom API to perform various tasks.

Resources

License

Stars

Watchers

Forks

Packages

No packages published