Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amanraj1608/google-meet-scheduler
😴 Attends classes for you.
https://github.com/amanraj1608/google-meet-scheduler
bot chromium google-meet google-meet-scheduler headless puppeteer
Last synced: 4 days ago
JSON representation
😴 Attends classes for you.
- Host: GitHub
- URL: https://github.com/amanraj1608/google-meet-scheduler
- Owner: AmanRaj1608
- Created: 2020-07-21T16:32:43.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-20T13:22:16.000Z (almost 2 years ago)
- Last Synced: 2024-04-16T20:25:46.521Z (8 months ago)
- Topics: bot, chromium, google-meet, google-meet-scheduler, headless, puppeteer
- Language: JavaScript
- Homepage: https://meet-scheduler.glitch.me/
- Size: 234 KB
- Stars: 189
- Watchers: 1
- Forks: 38
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Google Meet Scheduler
Join's meet link for you 😴
Bot for scheduling and entering google meet sessions automatically.
##### New Features
- Saving RAM: Using same browser for all meet pages
- Multiple meet logic added### Installation Guide
1. Open terminal on your PC
2. Clone the repo `git clone https://github.com/AmanRaj1608/Google-Meet-Scheduler.git`
3. Go inside the project directory
4. Rename `.env-example` file to `.env` and replace your email and password there
5. Install dependencies `npm install`
6. Start the application `npm start`Now the project has started on `localhost:3000`
### Usage Guide
Now when you visit the page you will see things to add
- Meet Link
- Start Time
- End timeThen submit and do what you wanted to, it will log in and join meet for you.
You can add more links there to add it to the queue.
### Requirements
- [Node.js](https://nodejs.org/en/download/) should be installed
- [Google Chrome](https://www.google.com/intl/en_in/chrome/) with version 70+
- Works only on windows (see [Issue #2](https://github.com/AmanRaj1608/Google-Meet-Scheduler/issues/8) for more info)### If you want to see the whole process
On line `16` of `server.js` file you can see a variable name head=false;
If you want to see bot automatically opening the page and filling login values and joining meet link then you can set the headless as flase.
But while for deployment we need headless as true.
### Deployment
If you want to deploy your instance of app you need it to set it up properly.
The main problem on deployment is that after deployment it will be hosted on different IP and when bot tries to sign in Google will ask to login again with `one time password`.More details here [Issue #1](https://github.com/AmanRaj1608/Google-Meet-Scheduler/issues/1)
I recommend using [digitalocean](https://m.do.co/c/92e13bfef66f)
### Todo
You can however deploy it by creating an API that will ask for OTP and while sign-in you give that info to the server.
This can be implemented as a new branch especially for deployment purpose### How it works
Project is made using [Puppeteer](https://developers.google.com/web/tools/puppeteer) which is a Node library which provides a high-level API to control headless Chrome or Chromium. We open a chromium app on server where we can add create open tabs see browser versions and everything.
So here we are using `puppeteer-extra` and `puppeteer-extra-plugin-stealth` which helps in creating an instance of chrome where google don't able to detect that it is created by puppeteer. So using this plugin we can login into google without filling capcha.
---
Made with ❤️ by Aman Raj
```