update: file organization, README; fix: showing averages with grades; add: Makefile

This commit is contained in:
mnjx
2023-04-13 12:36:08 +02:00
parent 80fbd8b946
commit 90568dfddd
13 changed files with 571 additions and 514 deletions
+17
View File
@@ -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()