Skip to content

radhikakakkar/zoho-meeting-python-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Table of Contents
  1. About The Project
  2. Getting Started
  3. Usage
    • Getting Environment Variables for the SDK
    • Using the Meeting Methods in Your App
  4. License
  5. Contact
  6. Acknowledgments

About The Project

This is a free tool for you to ensure seemless integration with Zoho meeting in any of your apps. You just have to provide

  • Client ID
  • Client Secret
  • Redirect URI
  • Auth Grant

The above three values need to be put in your .env file and you are good to go

(back to top)

Getting Started

Prerequisites

  • Python>=3.6

Installation

  1. Clone the repo
    git clone https://github.com/radhikakakkar/zoho-meeting-python-sdk
  2. Create and activate virtual environment
    python3 -m venv venv
    source venv/bin/activate
  3. Install the tool
    cd <cloned repo parent directory>
     python3 setup.py install

(back to top)

Usage

Getting Environment Variables for the SDK

  1. Register your account with Zoho and create the client credentials on their dev console

    Zoho API Console

  2. Enter your app's redirect URI where asked and then copy client_id, client_secret to the .env file

    Client Details

  3. Here is how you can get the auth grant. This is just a one-time thing!

    Get Auth Grant

    Make sure you use the correct scopes:

    • ZohoMeeting.meeting.UPDATE
    • ZohoMeeting.meeting.READ
    • ZohoMeeting.meeting.CREATE
    • ZohoMeeting.meeting.DELETE
  4. Add the above 4 variables in your .env and start running!

Using the Meeting Methods in Your App

  • Scheduling meetings
  • Updating meetings
  • Deleting meetings
  • Get Meeting Recordings

(back to top)

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

(back to top)

License

Distributed under the MIT License. See LICENSE.txt for more information.

(back to top)

Contact

Radhika Kakkar - @radhikakakkar - radhika3273@gmail.com

Project Link: https://github.com/radhikakakkar/zoho-meeting-python-sdk

(back to top)

Acknowledgments

(back to top)