DEV Community

liamlo-dev
liamlo-dev

Posted on

Auto Join Zoom Meetings with Python

Step 1 Installation:

Installing pip:
https://stackoverflow.com/questions/17271319/how-do-i-install-pip-on-macos-or-os-x

Installing virtualenv:
pip uninstall virtualenv
sudo pip install virtualenv

mkdir zoom_automation
cd zoom_automation
virtualenv env
source env/bin/activate          *** for Mac
.\env\scripts\activate           *** for Windows
pip install schedule
Enter fullscreen mode Exit fullscreen mode

Step 2: Simple code
touch meeting_scheduler.py

import schedule
import time
import webbrowser

def open_link(link):
    webbrowser.open(link)

def demo_meeting():
    open_link('MY ZOOM MEETING URL')

schedule.every().friday.at("12:25").do(demo_meeting)

while 1:
    schedule.run_pending()
    time.sleep(1)
Enter fullscreen mode Exit fullscreen mode

Step 3: Run
python meeting_scheduler.py

Top comments (0)