update: file organization, README; fix: showing averages with grades; add: Makefile
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
from lib import grades as gr
|
||||
from lib import networking as nw
|
||||
from lib import schedule_week as sw
|
||||
|
||||
if __name__ == "__main__":
|
||||
user = str(input("Zadejte přihlašovací jméno: "))
|
||||
pwd = str(input("Zadejte heslo: "))
|
||||
|
||||
if nw.is_connected() == True:
|
||||
nw.login(user, pwd)
|
||||
#sw.get_schedule_week("/SOL/App/Kalendar/KZK001_KalendarTyden.aspx")
|
||||
sw.show_schedule_week()
|
||||
#gr.get_grades("/SOL/App/Hodnoceni/KZH001_HodnVypisStud.aspx")
|
||||
gr.show_grades()
|
||||
#sw.schedule_week_to_file()
|
||||
#gr.grades_to_file()
|
||||
#sw.schedule_week_from_file()
|
||||
Reference in New Issue
Block a user