Skip to content

uw-it-aca/uw-restclients-zoom

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

REST client for the Zoom API

Build Status Coverage Status PyPi Version Python versions

Installation:

pip install UW-RestClients-Zoom

To use this client, you'll need these settings in your application or script:

# Specifies whether requests should use live or mocked resources,
# acceptable values are 'Live' or 'Mock' (default)
RESTCLIENTS_ZOOM_DAO_CLASS=Live

# Zoom REST API hostname (eval or production)
RESTCLIENTS_ZOOM_HOST=https://...

# Zoom Key/Secret
RESTCLIENTS_ZOOM_API_KEY=
RESTCLIENTS_ZOOM_API_SECRET=

Optional settings:

# Customizable parameters for urllib3
RESTCLIENTS_ZOOM_TIMEOUT=5
RESTCLIENTS_ZOOM_POOL_SIZE=10

See examples for usage. Pull requests welcome.