Python解決觀看繼續(xù)教育視頻的煩惱!
? ? ? ?對(duì)于評(píng)職稱的人來說,需要在--廣東人才繼續(xù)教育網(wǎng)--觀看視頻來完成專業(yè)科目,選修科目的課時(shí),這是一項(xiàng)重復(fù)且耗時(shí)間的事情!

? ? ? ?對(duì)于手工一遍一遍地重復(fù)點(diǎn)擊視頻,累死人不說,最重要的是浪費(fèi)時(shí)間,怎么能忍重復(fù)3次以上的工作,必須利用程序自動(dòng)化。這里引進(jìn)Python--autogui? 使用一段程序代碼實(shí)現(xiàn)自動(dòng)觀看視頻。
下面為具體代碼:
'''實(shí)現(xiàn)繼續(xù)教育做題'''
import pyautogui
import time
def click_Exit():
? ?left_w, top_w, width_w, height_w = pyautogui.locateOnScreen('a02.png')
? ?center_w = pyautogui.center((left_w, top_w, width_w, height_w))
? ?time.sleep(0.5) ?##等待時(shí)間0.5秒
? ?pyautogui.click(center_w) #單擊-(退出播放02)
? ?print('點(diǎn)擊學(xué)習(xí)進(jìn)度成功')
def click_Learning():
? ? left2, top2, width2, height2 = pyautogui.locateOnScreen('a03.png')
? ? center2 = pyautogui.center((left2, top2, width2, height2))
? ? pyautogui.click(center2)#單擊-(繼續(xù)學(xué)習(xí)03)
? ? print('點(diǎn)擊繼續(xù)學(xué)習(xí)')
def click_View():
? ?left1, top1, width1, height1 = pyautogui.locateOnScreen('a04.png')
? ?center1 = pyautogui.center((left1, top1, width1, height1))
? ?pyautogui.click(center1) ?# 單擊-(開始觀看)
? ?print('點(diǎn)擊開始觀看')
def click_Play():
? ?left_s, top_s, width_s, height_s = pyautogui.locateOnScreen('a05.png')
? ?center_s = pyautogui.center((left_s, top_s, width_s, height_s))
? ?time.sleep(0.5) ?##等待時(shí)間0.5秒
? ?pyautogui.click(center_s) #單擊-(點(diǎn)擊播放)
? ?print('點(diǎn)擊播放')
while True:
? ?if pyautogui.locateCenterOnScreen('a01.png') is None: # 沒有出現(xiàn)結(jié)束的圖
? ? ? ?print("未找到匹配圖片,2秒后重試")
? ? ? ?time.sleep(2) ?# 等待時(shí)間2秒
? ?else: # 學(xué)習(xí)進(jìn)度完成
? ? ? ?print("找到完成圖片!")
? ? ? ?click_Exit()#點(diǎn)擊退出播放
? ? ? ?print("點(diǎn)擊~退出播放~")
? ? ? ?time.sleep(2) #等待時(shí)間2秒
? ? ? ?click_Learning()#點(diǎn)擊繼續(xù)學(xué)習(xí)
? ? ? ?print("點(diǎn)擊~繼續(xù)學(xué)習(xí)~")
? ? ? ?time.sleep(0.5) ?# 等待時(shí)間0.5秒
? ? ? ?#判斷視頻播放是否結(jié)束的循環(huán)
? ? ? ?while True:
? ? ? ? ? ?pyautogui.scroll(-300) ?# 鼠標(biāo)滾輪往下200
? ? ? ? ? ?time.sleep(2) ?# 等待時(shí)間2秒
? ? ? ? ? ?if pyautogui.locateCenterOnScreen('a04.png') is None: ?# 沒有出現(xiàn)開始觀看的圖
? ? ? ? ? ? ? ?print("未找到開始觀看,2秒后重試~")
? ? ? ? ? ? ? ?pyautogui.scroll(-100)
? ? ? ? ? ? ? ?time.sleep(2)
? ? ? ? ? ?else: ?# 出現(xiàn)出現(xiàn)課間習(xí)題
? ? ? ? ? ? ? ?click_View()#單擊-(開始觀看)
? ? ? ? ? ? ? ?print("點(diǎn)擊~開始觀看~")
? ? ? ? ? ? ? ?time.sleep(3) ?# 等待時(shí)間3秒
? ? ? ? ? ? ? ?click_Play()#單擊-(點(diǎn)擊播放)
? ? ? ? ? ? ? ?break
注釋:a01.png;a02.png;a03.png;a04.png;a05.png為需要鼠標(biāo)點(diǎn)擊位置的圖片。
??Python--autogui 是一個(gè)強(qiáng)大的自動(dòng)操作庫,我使用autogui實(shí)現(xiàn)在繼續(xù)教育網(wǎng)站觀看專業(yè)課,選修課和公需課,特別是公需課,在觀看視頻中是需要做題提交答案,這時(shí)候需要引進(jìn)random配合autogui 自動(dòng)觀看視頻并做題。
