YEET MEET is a telegram bot which can be deployed to a server, heroku or on your local machine. It can attend your Google Meet and Zoom classes for you.
/meet - Command to join Google Meet classes or metting
/zoom - Command to join Zoom Meeting
/status - Sends screenshot of the web page
/restart - Close all the opened window and restarts the script
Join Google Meeting
/meet https://meet.google.com/agr-ghts-ade
Join Zoom Meeting
/zoom 12354674654 ax56rR
Get screenshot of the web page
/status
Close all the opened window and restarts the script
/restart
Set ENVIRONMENT VARIABLES according to VARIABLES in config.py OR See How to edit config.py
- Download and Install Google Chrome and Chromedriver.
git clone https://github.com/1337w0rm/YeetMeet
cd YeetMeet
pip install -r requirements.txt
python chromium.py
One Click Deploy
Note: In one click deploy you will have to re-login every day.
Conventional Deploy
Note: Login to your Google account from your local machine first, so that you don't have to re-login again and again on Heroku.
Set ENVIRONMENT VARIABLES according to VARIABLES in config.py OR See How to edit config.py
- Download and Install Google Chrome and Chromedriver.
git clone https://github.com/1337w0rm/YeetMeet
cd YeetMeet
pip install -r requirements.txt
python chromium.py
- Login to your Google Account.
- Now through Heroku-CLI login to your Heroku account
- Create a Heroku App
heroku create appname --buildpack heroku/python
- Set Chromedriver Builpack
heroku buildpacks:add https://github.com/heroku/heroku-buildpack-chromedriver -a appname
- Set Google Chrome buildpack
heroku buildpacks:add https://github.com/1337w0rm/heroku-buildpack-google-chrome -a appname
- Select this app in your Heroku-CLI
heroku git:remote -a appname
- Commit the changes
git commit -am "Your commit message"
- Push Code to Heroku
git push heroku master
- Scale the dynos
heroku ps:scale worker=1