Skip to main content

Async library for interaction with Zoom API

Project description

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)

get_meeting_participants(meeting_id)

get_meeting_info(meeting_id)

and more...

Docs will be available soon...

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aiozoom-0.0.9.tar.gz (5.3 kB view hashes)

Uploaded Source

Built Distribution

aiozoom-0.0.9-py3-none-any.whl (7.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page