Created
September 26, 2022 13:54
-
-
Save Magnus167/5ebde93d8d8c753cab3cdcdf3514a60d to your computer and use it in GitHub Desktop.
Python script to launch Zoom/Google/Teams meetings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # useful when joining recurring zoom/teams/google meetings. | |
| # webbrowser is part of the python (3.6+) standard library, so no installs needed. | |
| import webbrowser | |
| webbrowser.open_new_tab('LINK_TO_ZOOM_MEETING') | |
| # for windows systems, | |
| # 1. save this script in a new (empty) folder. (mine is called work_tools) | |
| # 2. right click on task bar, hover on "Toolbars", click on "New Toolbar" | |
| # 3. Add the new folder as a tool bar | |
| # 4. simply use the toolbar to avoid having to scramble for the meeting link | |
| # alternatively, you could create a shortcut to the script, and add a hotkey to the shortcut | |
| # star/fork if you like | |
| # enjoy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment