Now that the Zoom JWT app type is end of life, to use this library, you should use the Zoom Server to Server app type. Make sure to add your Zoom Account ID as a ZoomClient
param as well.
# Documentation Sample Code
import json
from zoomus import ZoomClient
client = ZoomClient('ZOOM_CLIENT_ID', 'ZOOM_CLIENT_SECRET', 'ZOOM_ACCOUNT_ID')
user_list_response = client.user.list()
user_list = json.loads(user_list_response.content)
for user in user_list['users']:
user_id = user['id']
print(json.loads(client.meeting.list(user_id=user_id).content))