{"id":19640180,"url":"https://github.com/gearplug/zoom-python","last_synced_at":"2025-08-22T12:12:14.810Z","repository":{"id":171054171,"uuid":"645820698","full_name":"GearPlug/zoom-python","owner":"GearPlug","description":"zoom-python is an API wrapper for Zoom, written in Python.","archived":false,"fork":false,"pushed_at":"2023-06-20T17:28:20.000Z","size":11,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-01-09T18:56:01.848Z","etag":null,"topics":["api","meetings","oauth2","python","registrants","wrapper","zoom"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GearPlug.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-05-26T14:06:47.000Z","updated_at":"2023-06-02T16:37:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"9d794fec-3744-40dd-bc5c-bb8f30472180","html_url":"https://github.com/GearPlug/zoom-python","commit_stats":null,"previous_names":["gearplug/zoom-python"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GearPlug%2Fzoom-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GearPlug%2Fzoom-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GearPlug%2Fzoom-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GearPlug%2Fzoom-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GearPlug","download_url":"https://codeload.github.com/GearPlug/zoom-python/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240947652,"owners_count":19883030,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","meetings","oauth2","python","registrants","wrapper","zoom"],"created_at":"2024-11-11T14:04:56.866Z","updated_at":"2025-02-26T22:44:29.778Z","avatar_url":"https://github.com/GearPlug.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# zoom-python\n![](https://img.shields.io/badge/version-0.1.1-success) ![](https://img.shields.io/badge/Python-3.8%20|%203.9%20|%203.10%20|%203.11-4B8BBE?logo=python\u0026logoColor=white)  \n\n*zoom-python* is an API wrapper for Zoom, written in Python.  \nThis library uses Oauth2 for authentication.\n## Installing\n```\npip install zoom-python\n```\n### Usage\n```python\nfrom zoom.client import Client\nclient = Client(client_id, client_secret, redirect_uri=None)\n```\nTo obtain and set an access token, follow this instructions:\n1. **Get authorization URL**\n```python\nurl = client.authorization_url(code_challenge, redirect_uri=None, state=None)\n# redirect_uri required if not given in Client.\n```\n2. **Get access token using code**\n```python\nresponse = client.get_access_token(code, code_verifier)\n# code_verifier is the same code_challenge\n```\n3. **Set access token**\n```python\nclient.set_token(access_token)\n```\nIf your access token expired, you can get a new one using refresh token:\n```python\nresponse = client.refresh_access_token(refresh_token)\n```\nAnd then set access token again...\nRead more about Zoom Oauth: https://developers.zoom.us/docs/integrations/oauth/\n\n#### - Get current user\n```python\nuser = client.get_current_user()\n```\n#### - List Users\n```python\nusers = client.list_users()\n```\n### Meetings\n#### - List meetings\n```python\nmeetings = client.list_meetings()\n```\n#### - Get a meeting\n```python\nmeeting = client.get_meeting(meeting_id)\n```\n#### - Create Meeting\n```python\nmeeting = client.create_meeting(\n        self,\n        topic: str,\n        duration: int,\n        start_time: str,\n        type: int = 2,\n        agenda: str = None,\n        default_password: bool = False,\n        password: str = None,\n        pre_schedule: bool = False,\n        schedule_for: str = None,\n        timezone: str = None,\n        recurrence: dict = None,\n        settings: dict = None,\n    )\n```\nMore info: https://developers.zoom.us/docs/api/rest/reference/zoom-api/methods/#operation/meetingCreate\n\n#### - Add meeting registrant (this feature requires premium auth)\n```python\nmeeting = client.add_meeting_registrant(\n        self,\n        meeting_id,\n        email: str,\n        first_name: str,\n        last_name: str = None,\n        address: str = None,\n        city: str = None,\n        state: str = None,\n        zip: str = None,\n        country: str = None,\n        phone: str = None,\n        comments: str = None,\n        industry: str = None,\n        job_title: str = None,\n        org: str = None,\n        no_of_employees: str = None,\n        purchasing_time_frame: str = None,\n        role_in_purchase_process: str = None,\n        language: str = None,\n        auto_approve: bool = None,\n    )\n```\nMore info: https://developers.zoom.us/docs/api/rest/reference/zoom-api/methods/#operation/meetingRegistrantCreate\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgearplug%2Fzoom-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgearplug%2Fzoom-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgearplug%2Fzoom-python/lists"}