start working on docker

This commit is contained in:
William Bell
2026-01-29 20:48:48 +00:00
parent 6c17b6c115
commit b1e58efd6d
4 changed files with 30 additions and 1 deletions

View File

@@ -115,6 +115,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()
@@ -195,4 +196,4 @@ def login_and_download():
if __name__ == "__main__":
app.run(debug=True)
app.run(debug=True, host="0.0.0.0")