Metadata-Version: 2.1
Name: add-registrant-zoom
Version: 0.5
Summary: A package for interacting with Zoom API
Home-page: https://github.com/own-coder/add-zoom-registrant
Author: Mangesh Chavan
Author-email: chavanmangesh245@gmail.com
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/plain


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

