https://github.com/kevinarce/meet_automation
This Python script allows you to automatically open Google Chrome and join a Google Meet link at a specified time and on specific days of the week using the schedule and pyautogui libraries.
https://github.com/kevinarce/meet_automation
automation google meet python
Last synced: 23 days ago
JSON representation
This Python script allows you to automatically open Google Chrome and join a Google Meet link at a specified time and on specific days of the week using the schedule and pyautogui libraries.
- Host: GitHub
- URL: https://github.com/kevinarce/meet_automation
- Owner: KevinArce
- Created: 2023-10-02T12:27:30.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-02T13:52:12.000Z (over 1 year ago)
- Last Synced: 2025-02-15T15:49:59.707Z (3 months ago)
- Topics: automation, google, meet, python
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Automated Google Meet Link Opener and Joiner
This Python script allows you to automatically open Google Chrome and join a Google Meet link at a specified time and on specific days of the week using the `schedule` and `pyautogui` libraries.
## Prerequisites
Before you can run this script, make sure you have Google Chrome installed on your system. Additionally, you'll need to install the `schedule` and `pyautogui` libraries using `pip`:
You can do this by following these steps:1. Create a virtual environment:
```bash
python -m virtualenv .
```2. Activate the virtual environment (on Windows):
```bash
.\Scripts\activate
```3. Install the `schedule` and `pyautogui` library:
```bash
pip install schedule pyautogui
```## Usage
1. Clone this repository to your local machine or download the script.
2. Edit the script to replace `'YOUR GOOGLE MEET LINK'` with the actual Google Meet meeting URL you want to open.
3. Customize the scheduling by modifying the `schedule.every()` lines. By default, the script is set to open the Google Meet link every Tuesday to Friday at 8 AM. You can adjust the days and time to meet your specific needs.
4. Run the script:
python meeting_scheduler.py
The script will run in the background and automatically open the Google Meet link at the scheduled times.
## Contributing
If you would like to contribute to this project, feel free to fork the repository and submit a pull request.
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.