-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtest.py
More file actions
33 lines (22 loc) · 773 Bytes
/
test.py
File metadata and controls
33 lines (22 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from icecream import ic
from ZhiHuiShuCourseWorkerBlocking import ZhiHuiShuCourseWorkerBlocking
class Test(ZhiHuiShuCourseWorkerBlocking):
def __init__(self, course_id: str, hour=21, minute=0, second=0, study_count: int = 3):
super().__init__(course_id, hour, minute, second, study_count)
ic(course_id, hour, minute, second, study_count)
def job_start(self):
ic()
def before_qr(self):
ic()
def after_qrcode(self):
ic()
def job_finish(self):
ic()
def lesson_finish(self):
ic()
def job(self, cookies: str = None):
super().job(cookies)
def start(self):
super().start()
def start_with_cookies(self, cookies: str):
super().start_with_cookies(cookies)