Async library for interaction with Zoom API


Keywords
python, zoom, async, aiohttp
License
MIT
Install
pip install aiozoom==0.0.8.8

Documentation

AIOZOOM

CodeFactor PyPI Version

Aiozoom is an async python library for interaction with Zoom API

Requirements

  1. Python 3.9
  2. pip

Installation

Under console using pip

  1. In the console, run the following command:
pip install --upgrade aiozoom

Quick start

  1. Import module
from aiozoom import Zoom
  1. Configure a Client
from aiozoom import Zoom

Zoom.configure('JWT_TOKEN')
  1. Create a meeting
import asyncio

from aiozoom import Zoom

Zoom.configure('JWT_TOKEN')
async def main():
    zoom = Zoom()
    await zoom.create_meeting('example@example.com', {'title': 'test'})

loop = asyncio.get_event_loop()
task = loop.create_task(main())
loop.run_until_complete(task)
loop.close()

Available methods:

create_meeting(email, body)

get_meeting(meeting_id)

stop_meeting(meeting_id)

delete_meeting(meeting_id)

update_meeting(meeting_id, body)

and more...

Docs will be available soon...