A package for interacting with Zoom API
Project description
zoom_registrant is a Python package that allows you to interact with the Zoom API.
It provides functions for managing Zoom meetings and registrants.
Project description
Add Zoom Registrant
A simple package to add Zoom Registrant from csv also add email using api.
How to install
pip install add-registrant-zoom
Import
from myzoom.setting import configure
from myzoom.AddZoomRegistrant import add_registrants
from myzoom.AddZoomRegistrant import add_registrant_api
Initialize the Package
We can either setup via the environment or by passing the credentials directly to the plugin.
client_id for the ClientId
client_secret for the ClientSecret
account_id for the AccountId
And then instantiate as shown below
settings = configure(client_id, client_secret, account_id)
And then Enter meeting Id
meeting_id = input("Enter meeting id: ")
NOTE
You don't need to explicitely pass client_id, client_secret, account_id.
API to add registrant into meeting
json_data = {"first_name": '', "last_name": '', "email": ''}
add_registrant_api(settings,meeting_id,json_data)
OR
Enter path of csv file
csv_path = input("Enter csv file path: ")
add_registrants(configure, meeting_id, csv_path)
zoom.csv format must as below.
eg.
Id FirstName LastName Email
1 ABC PQR abc.pqr@email.com
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
File details
Details for the file add-registrant-zoom-0.5.tar.gz
.
File metadata
- Download URL: add-registrant-zoom-0.5.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 182ca66390c239a9f6c9473469ed54f56be33019a5bd31c31eabc97d5642acdb |
|
MD5 | ba90084ffc8ae9934a8fb064e5900441 |
|
BLAKE2b-256 | 415257394edcad530504b5bfd5bc4629e2fa105d79f3a19d543672dcf1a74b46 |