A python script that automatically joins a zoom meeting based on your timetable.
- Checks the "timings.xlsx" file to look for meetings that are going to start.
- As soon as the current time matches any meeting time it opens the Zoom Desktop application.
- Navigates the cursor automatically to various steps to join the meeting.
- The meeting ID and passcode are extracted from "timings.xlsx" and entered into the Zoom app automatically.
- Zoom app must be installed in your system.
- Meeting time for the day along with Meeting ID and passcode must be entered manually into the "timings.xlsx"
- pyautogui, python, pandas
- An infinite loop keeps checking the current time of the system using "datetime.now" funtion.
- The zoom app is opened using "os.startfile()" funtion as soon as current time matches the time mentioned in "timings.xlsx".
- "pyautogui.locateOnScreen()" function locates the image of join button on the screen and returns the position.
- "pyautogui.moveTo()" moves the cursor to that location.
- "pyautogui.click()" performs a click operation.
- The meeting Id and Passcode are entered using the "pyautogui.write()" command.
© 2020 Sunil Aleti
Licensed under MIT License