Compare commits
3 Commits
c5ad6ed5f0
...
de7dc817aa
| Author | SHA1 | Date | |
|---|---|---|---|
| de7dc817aa | |||
| ebc7a2599d | |||
| 71092daee0 |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -140,6 +140,9 @@ mkdocs.yml
|
||||
|
||||
# vangef
|
||||
|
||||
requirements.*.txt
|
||||
!requirements.txt
|
||||
|
||||
___*.py
|
||||
venv*
|
||||
.TODO
|
||||
|
||||
@@ -22,10 +22,12 @@ Optionally, you can inspect the submissions for identical files (by generating a
|
||||
|
||||
- `__MACOSX` (macOS system generated files)
|
||||
|
||||
- `vendor` (composer / laravel)
|
||||
- `.git` (git repo files)
|
||||
|
||||
- `node_modules` (npm)
|
||||
|
||||
- `vendor` (composer / laravel)
|
||||
|
||||
- Deletes each compressed file after successful extraction into student directory
|
||||
|
||||
- Organises per student any remaining individually submitted files
|
||||
|
||||
@@ -30,10 +30,12 @@ Ignored directories by default:
|
||||
|
||||
- `__MACOSX` (macOS system generated files)
|
||||
|
||||
- `vendor` (composer / laravel)
|
||||
- `.git` (git repo files)
|
||||
|
||||
- `node_modules` (npm)
|
||||
|
||||
- `vendor` (composer / laravel)
|
||||
|
||||
## **Download gradebook**
|
||||
|
||||
1. Go to the course page on Blackboard
|
||||
|
||||
@@ -5,4 +5,4 @@ BB_GRADEBOOKS_DIR = 'BB_gradebooks' # directory with extracted gradebooks downl
|
||||
BB_SUBMISSIONS_DIR = 'BB_submissions' # directory with organised gradebook submissions
|
||||
BAD_DIR_NAME = '__BAD__' # for organise_gradebook.py - directory with corrupt/invalid compressed files
|
||||
CSV_DIR = os.path.join(os.getcwd(), 'csv-inspect') # for inspect_gradebook.py and inspect_submissions.py - output dir for generated CSV files
|
||||
IGNORE_DIRS = [ '__MACOSX', 'vendor', 'node_modules' ] # list of dir names to ignore from extracting
|
||||
IGNORE_DIRS = [ '__MACOSX', '.git', 'node_modules', 'vendor' ] # list of dir names to ignore from extracting
|
||||
|
||||
Reference in New Issue
Block a user