From 12ba7846948958263e93cf16cd423a9a29f9f296 Mon Sep 17 00:00:00 2001 From: dj346 Date: Fri, 24 Dec 2021 01:43:50 -0800 Subject: [PATCH] added function to download course home page. --- export.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/export.py b/export.py index 8f3910e..938867f 100644 --- a/export.py +++ b/export.py @@ -7,6 +7,8 @@ import string from canvasapi import Canvas from canvasapi.exceptions import ResourceDoesNotExist, Unauthorized +from singlefile import download_page + import dateutil.parser import jsonpickle import requests @@ -198,6 +200,7 @@ def makeValidFolderPath(input_str): return input_str + def findCourseModules(course, course_view): modules_dir = os.path.join(DL_LOCATION, course_view.term, course_view.course_code, "modules") @@ -665,6 +668,18 @@ def exportAllCourseData(course_view): with open(course_output_path, "w") as out_file: out_file.write(json_str) +def downloadCourseHTML(api_url, cookies_path): + if(cookies_path == ""): + return + + course_dir = DL_LOCATION + + if not os.path.exists(course_dir): + os.makedirs(course_dir) + + # Downloads the course list. + download_page(api_url + "/courses/", cookies_path, course_dir, "course_list.html") + if __name__ == "__main__": @@ -731,6 +746,11 @@ if __name__ == "__main__": print(" Getting modules and downloading module files") course_view.modules = findCourseModules(course, course_view) + if(COOKIES_PATH): + print(" Downloading course list page") + downloadCourseHTML(API_URL, COOKIES_PATH) + + print(" Exporting all course data") exportAllCourseData(course_view)