Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions example_script_with_progressbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
To execute:
`python example_script.py`
"""

import os
import time
from pathlib import Path
Expand Down
1 change: 1 addition & 0 deletions src/py_moodle/course.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
Provides functions to list courses, retrieve course details,
and enumerate course sections using AJAX endpoints.
"""

import json
import time
import urllib.parse
Expand Down
1 change: 1 addition & 0 deletions src/py_moodle/folder.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

All code and comments are in English.
"""

import json
import re
import time
Expand Down
1 change: 1 addition & 0 deletions src/py_moodle/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Generic Moodle module management helpers.
All code and comments are in English.
"""

import json
import re
import time
Expand Down
1 change: 1 addition & 0 deletions src/py_moodle/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

This method requires a webservice token with 'core_files_upload' capability.
"""

import mimetypes
import os
from pathlib import Path
Expand Down
1 change: 1 addition & 0 deletions src/py_moodle/url.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
Provides functions to create and delete "url" modules linking to external resources.
All code and comments are in English.
"""

from __future__ import annotations

import time
Expand Down
Loading