mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2024-11-23 20:11:07 +00:00
bba0512e1c
* Create CONTRIBUTING.md * Delete CONTRIBUTING.md * Create CONTRIBUTING.md * Create main.py * Add files via upload * Added requirements.txt * Add files via upload * Update README.md |
||
---|---|---|
.. | ||
assets | ||
main.py | ||
meeting_ids.txt | ||
meeting_times.txt | ||
README.md | ||
requirements.txt |
Automated Google Meet Joiner
An automated google meet joiner the auto-joins meetings according to schedule.
Setup
- To run this project, download the files and run the following command to install all the necessary files.
pip install -r requirements.txt
- Then open the
meeting_ids.txt
file and add your meeting ids for the day in order on each line.
E.g.
meeting_id_1
meeting_id_2
meeting_id_3
- Then open the
meeting_times.txt
file and add your meeting time (in the 24-hour format, e.g. 16:00) for the day in order on each line.
E.g.
16:00
17:30
18:50
- The run the python file either normally or using the
pythonw
version to avoid a dialog box.
pythonw main.py
Additional Setup
- To add more than the default 3 meetings setup by the program, simply add your meeting ids and time to the respective file and copy the following line and paste it in the program for as many ids that you add.
schedule.every().day.at(time[x]).do(joinGoogleMeet(ids[x]))
- Remember to replace the 'x' with the number on which the meeting id and time is located.