Skip to content

vladisa88/aiozoom

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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...

About

Asynchronous client for work with Zoom API

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages