canvas-download 1.1.1__tar.gz → 1.1.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {canvas_download-1.1.1 → canvas_download-1.1.3}/.gitignore +1 -0
- {canvas_download-1.1.1 → canvas_download-1.1.3}/PKG-INFO +1 -1
- {canvas_download-1.1.1 → canvas_download-1.1.3}/pyproject.toml +1 -1
- {canvas_download-1.1.1 → canvas_download-1.1.3}/src/canvas_download/canvas_download.py +2 -2
- {canvas_download-1.1.1 → canvas_download-1.1.3}/LICENSE.txt +0 -0
- {canvas_download-1.1.1 → canvas_download-1.1.3}/README.md +0 -0
- {canvas_download-1.1.1 → canvas_download-1.1.3}/src/canvas_download/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: canvas-download
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.3
|
|
4
4
|
Summary: Downloads Canvas modules/files into a local directory.
|
|
5
5
|
Project-URL: Homepage, https://github.com/suncloudsmoon/canvas-download
|
|
6
6
|
Project-URL: Issues, https://github.com/suncloudsmoon/canvas-download/issues
|
|
@@ -31,7 +31,7 @@ def main():
|
|
|
31
31
|
contents = json.dumps({"API_URL": "", "API_KEY": ""}, indent=4)
|
|
32
32
|
login_path.write_text(contents, encoding="utf-8")
|
|
33
33
|
print(
|
|
34
|
-
f"Fill out the details of your canvas login credentials at {login_path} and relaunch this application to continue. Note: '.config' directory is hidden."
|
|
34
|
+
f"Fill out the details of your canvas login credentials at '{login_path}' and relaunch this application to continue. Note: '.config' directory is hidden."
|
|
35
35
|
)
|
|
36
36
|
return
|
|
37
37
|
|
|
@@ -52,7 +52,7 @@ def main():
|
|
|
52
52
|
|
|
53
53
|
courses_path = config_dir / "courses.json"
|
|
54
54
|
names_courses = {
|
|
55
|
-
|
|
55
|
+
get_valid_filename(course.name).replace("-", " "): course
|
|
56
56
|
for course in current_courses
|
|
57
57
|
}
|
|
58
58
|
if not courses_path.exists():
|
|
File without changes
|
|
File without changes
|
|
File without changes
|