Awesome-Python-Scripts/google_meet_joiner
Johan Sebastian bba0512e1c
Added Google Meet Joiner (#246)
* 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
2021-10-30 21:10:50 +05:30
..
assets Added Google Meet Joiner (#246) 2021-10-30 21:10:50 +05:30
main.py Added Google Meet Joiner (#246) 2021-10-30 21:10:50 +05:30
meeting_ids.txt Added Google Meet Joiner (#246) 2021-10-30 21:10:50 +05:30
meeting_times.txt Added Google Meet Joiner (#246) 2021-10-30 21:10:50 +05:30
README.md Added Google Meet Joiner (#246) 2021-10-30 21:10:50 +05:30
requirements.txt Added Google Meet Joiner (#246) 2021-10-30 21:10:50 +05:30

Automated Google Meet Joiner

An automated google meet joiner the auto-joins meetings according to schedule.

Setup

  1. To run this project, download the files and run the following command to install all the necessary files.
pip install -r requirements.txt
  1. 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
  1. 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
  1. The run the python file either normally or using the pythonw version to avoid a dialog box.
pythonw main.py

Additional Setup

  1. 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.

License

MIT

Authors