Async library for interaction with Zoom API
Project description
AIOZOOM
Aiozoom is an async python library for interaction with Zoom API
Requirements
- Python 3.9
- pip
Installation
Under console using pip
- In the console, run the following command:
pip install --upgrade aiozoom
Quick start
- Import module
from aiozoom import Zoom
- Configure a Client
from aiozoom import Zoom
Zoom.configure('JWT_TOKEN')
- 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
Release history Release notifications | RSS feed
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 details)
Built Distribution
File details
Details for the file aiozoom-0.0.9.tar.gz
.
File metadata
- Download URL: aiozoom-0.0.9.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8d93cf0238d3fb5384cf828a8cf12aa08c040119102616d87389bec58559a44 |
|
MD5 | 9f684a16dc6842d8def8f282a2c85990 |
|
BLAKE2b-256 | 9d0644344dd2bea403fc52fb72cc7b49a7181ef085d3ddab83bed337f441237a |
Provenance
File details
Details for the file aiozoom-0.0.9-py3-none-any.whl
.
File metadata
- Download URL: aiozoom-0.0.9-py3-none-any.whl
- Upload date:
- Size: 7.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 828d6899a34ce33fb4563baa97718ddbc76b917c5b6ff6f0ed9ef02768222a05 |
|
MD5 | 7eb2da25eb6b5b6b2153e0cceabcaa63 |
|
BLAKE2b-256 | 0b34c6cdd7979ce79323cb3ff39d9bf1076238ae14cac877a4ebf9f5e33d1db5 |