This commit is contained in:
Ugric
2026-01-29 23:19:48 +00:00
4 changed files with 30 additions and 1 deletions

View File

@@ -116,6 +116,7 @@ def fetch_timetable(username, password):
session = requests.Session()
session.auth = HttpNtlmAuth(username, password)
session.verify = False
r = session.get(URL)
r.raise_for_status()
@@ -211,4 +212,4 @@ def login_and_download():
if __name__ == "__main__":
app.run(debug=True)
app.run(debug=True, host="0.0.0.0")