Async library for interaction with Zoom API
Project description
AIOZOOM
aiozoom is an async 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)
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.7.1.tar.gz
(5.1 kB
view details)
Built Distribution
File details
Details for the file aiozoom-0.0.7.1.tar.gz
.
File metadata
- Download URL: aiozoom-0.0.7.1.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b32f2301a6645163a2b6438d4cf295ecaeaa12e95e5a2196800c69e9ca87bba |
|
MD5 | 58960701ff1e1a22d569ae33d36a4caa |
|
BLAKE2b-256 | 0d37e02c5c5ad0ba97cfeef1ccf5dc645d1f71afee1f5b7df4ab81dac8d1302d |
File details
Details for the file aiozoom-0.0.7.1-py3-none-any.whl
.
File metadata
- Download URL: aiozoom-0.0.7.1-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d5afe2194fbde2cbf9dc3798209f39d219230812d843e66ea2bc8f44766450c |
|
MD5 | c138fd1ccfd4b544e1f5374d03f075cc |
|
BLAKE2b-256 | 4ae126b06dd9bb817caf488fb9d4150dc9148ac50db37818126051ccf04f0fe3 |