Python library for easy using Zoom-API-v2
Project description
zoome
Getting Started
$ pip install zoome
create ZoomClient object
from zoome.api import ZoomClient
zc = ZoomClient(api_key='<api_key>', secret_api_key='<secret_api_key>')
or
from zoome.api import ZoomClient
zc = ZoomClient(jwt_token='<jwt_token>')
get meetings list
meetings = zc.get_meetings_list()
download file
zc.download_file(full_path='<full_path>', url='<url>')
Utils
get download urls from list of meetings
from zoome.api import ZoomClient
from zoome.utils import get_meetings_download_urls
zc = ZoomClient(jwt_token='<jwt_token>')
meetings = zc.get_meetings_list()
links = get_meetings_download_urls(meetings)
links:
[
[
{
"download_url": "<download_url>",
"recording_type": "<recording_type>",
"file_type": "<file_type>"
},
...
],
...
]
get download links from one meeting
from zoome.api import ZoomClient
from zoome.utils import get_download_urls_from_meeting
zc = ZoomClient(jwt_token='<jwt_token>')
meetings = zc.get_meetings_list()
links = get_download_urls_from_meeting(meetings[0])
links:
[
{
"download_url": "<download_url>",
"recording_type": "<recording_type>",
"file_type": "<file_type>"
},
...
]
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
zoome-0.0.3.tar.gz
(3.0 kB
view details)
Built Distribution
zoome-0.0.3-py3-none-any.whl
(3.4 kB
view details)
File details
Details for the file zoome-0.0.3.tar.gz
.
File metadata
- Download URL: zoome-0.0.3.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c57e38619513b15868cdf6cc9812faba13b472831d54386330c82753136607f2 |
|
MD5 | ee4e981edb34eab161e5afabc7880cda |
|
BLAKE2b-256 | 6a40f58e3505b31d098e596884c3c6717f3d155f31baba57769210dc2c414b44 |
Provenance
File details
Details for the file zoome-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: zoome-0.0.3-py3-none-any.whl
- Upload date:
- Size: 3.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb4907739f8012716b3dce15ce56057d465d64cbc951cb7382bb6b50ebd13e3f |
|
MD5 | bb4789d107c38d518d0c001220a04b98 |
|
BLAKE2b-256 | 4e68ede176cfa0ff457605514b0ec5423c03624c9e88efee24e2d76336b578a5 |