MySchedule.py
Updates to the fetching of week codes
Ini adalah pembungkus API untuk situs web MySchedule McDonald's.
Instal dengan:
pip install MySchedule.py
from schedule import ScheduleAPI
from datetime import datetime
api = ScheduleAPI ( "USERID" , "PASSWORD" )
api . login ()
print ( api . get_shifts_for_date ( datetime . now ()))
Ini akan mencetak shift untuk minggu ini.
from schedule import ScheduleAPI
api = ScheduleAPI ( "USERID" , "PASSWORD" )
api . login ()
timecard = api . get_timecard ()
for shift in timecard :
print ( f" { shift . date } Breakdown:" )
print ( f"Duration Clocked In: { shift . time_clocked_in } " )
print ( f"Duration Clocked Out: { shift . time_clocked_out } " )
Ini akan mencetak perincian kartu waktu setiap shift dan berapa lama Anda masuk dan keluar.