Delete main.py

This commit is contained in:
mnjx
2023-06-12 11:07:24 +02:00
committed by GitHub
parent 783a37186e
commit f0d7e50cad
-19
View File
@@ -1,19 +0,0 @@
#!/bin/python3
from solenlib import grades as gr
from solenlib import networking as nw
from solenlib import schedule_week as sw
from solenlib import schedule_tdy_tmr as st
import sys
if __name__ == "__main__":
user = str(input("Zadejte přihlašovací jméno: "))
pwd = str(input("Zadejte heslo: "))
if not nw.login(user, pwd):
print("LOGIN UNSUCCESSFULL")
sys.exit(1)
else:
sw.show_schedule()
st.show_schedule()
gr.show_grades()