1337w0rm / YeetMeet

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. You can also schedule meetings and it will automatically join at the given time.
168 stars 103 forks source link

How to automatically leave when the no: of participants get reduced to a certain amount #31

Closed pvnotpv closed 3 years ago

1337w0rm commented 3 years ago

In bot/meet.pkl line 20 to 29

def students(context): try: number = WebDriverWait(browser, 2400).until(EC.presence_of_element_located((By.XPATH, '//*[@id="ow3"]/div[1]/div/div[8]/div[3]/div[6]/div[3]/div/div[2]/div[1]/span/span/div/div/span[2]'))).text except: return print(number) if(int(number) <10): context.bot.send_message(chat_id=userId, text="Your Class has ended!") browser.quit() execl(executable, executable, "chromium.py")

This code helps to automatically leave the meeting when the no of participants gets reduced to a certain amount.