前言
嗯,我們都知道Zoom是一個(gè)視頻會(huì)議應(yīng)用程序,它允許我們參加/主持會(huì)議。由于新冠的情況,視頻會(huì)議應(yīng)用的使用也急劇增加,這成為了一種新的常態(tài),有時(shí)這些連續(xù)的在線課程變得很麻煩。
今天我們將學(xué)習(xí)如何寫(xiě)一個(gè)腳本,以便它可以自動(dòng)登錄Zoom到一個(gè)會(huì)議/課程的時(shí)間。
為此,我們需要
- Python/ target=_blank class=infotextkey>Python
- pyautogui
- pandas
預(yù)備知識(shí)點(diǎn):
- 無(wú)限循環(huán)使用“datetime”來(lái)檢查系統(tǒng)的當(dāng)前時(shí)間的功能。
- 當(dāng)前時(shí)間與time .xlsx中提到的時(shí)間匹配時(shí),使用os.startfile()函數(shù)打開(kāi)縮放應(yīng)用程序。
- pyautogui.locateOnScreen()函數(shù)的作用是:在屏幕上定位連接按鈕的圖像并返回位置。
- pyautogui.locateCenterOnScreen()函數(shù)定位屏幕上第一個(gè)找到的圖像實(shí)例的中心。
- pyautogui.moveTo()將光標(biāo)移動(dòng)到該位置。
- pyautogui.click()執(zhí)行一個(gè)單擊操作。
- 使用pyautogui.write()命令輸入會(huì)議Id和密碼。
1. 必要的模塊
import os
import pandas as pd
import pyautogui
import time
from datetime import datetime
os——提供了一種使用操作系統(tǒng)相關(guān)功能的方法。
pandas——允許我們?cè)谧兞康男泻土兄写鎯?chǔ)和操作表格數(shù)據(jù)。
pyautogui——幫助控制鼠標(biāo)和鍵盤(pán)以及其他GUI自動(dòng)化任務(wù)的模塊。
2. 從指定位置打開(kāi)Zoom應(yīng)用程序
os.startfile(" ")
3.點(diǎn)擊連接按鈕
#place the pic location inside quotes
joinbtn=pyautogui.locateCenterOnScreen("")
pyautogui.moveTo(joinbtn)
pyautogui.click()
4. 加入按鈕
#To type the meeting id
#place the picture location inside quotes
meetingidbtn=pyautogui.locateCenterOnScreen("")
pyautogui.moveTo(meetingidbtn)
pyautogui.write(meeting_id)
5. 輸入密碼
#Enter the passcode to join meeting
passcode=pyautogui.locateCenterOnScreen("")
pyautogui.moveTo(passcode)
pyautogui.write(password)
6. 創(chuàng)建一個(gè)Excel文件,添加所有會(huì)議細(xì)節(jié),如“時(shí)間”,“會(huì)議id”和“密碼”
7. 使用pandas導(dǎo)入該excel文件
#place excel file location inside quotes
df = pd.read_excel('',index=False)
8.循環(huán)檢查當(dāng)前時(shí)間并比較excel文件中的時(shí)間
while True:
#To get current time
now = datetime.now().strftime("%H:%M")
if now in str(df['Timings']):
mylist=df["Timings"]
mylist=[i.strftime("%H:%M") for i in mylist]
c= [i for i in range(len(mylist)) if mylist[i]==now]
row = df.loc[c]
meeting_id = str(row.iloc[0,1])
password= str(row.iloc[0,2])
time.sleep(5)
signIn(meeting_id, password)
time.sleep(2)
print('signed in')
break
完整代碼:https://github.com/aletisunil/Automating_Zoom
英文原文:https://sunilaleti.hashnode.dev/automating-zoo