Grade_Alert_rs: An automated tool written in Rust to help teachers by extracting student grade information from CSV files so that it can be conveniently diffused to members of a class
- Oliver Bonham-Carter, Web
- email: [email protected]
- Date: 24th April 2025
GitHub link: https://github.com/developmentAC/__Grade_Alert_rs__
GitHub Classroom is an excellent resource to handle work repositories for a course of many students. Each student, after "accepting" an assignment is issued a unique repository in which work can be completed and pushed to the instructor.
Here, we suggest that GitHub Classroom be used to report grades to each student who has a grade book "assignment" repository. The instructor, who has access to this repository, places a file containing grades and feedback into this repository for the student to consult. With a little setup and configuration, Grade_Alert_rs can place each gradebook file into its corresponding repository. This step saves the user from having to remember which file goes into what repository. All parts of this project have been written to run in Linux or MacOS operating systems. If you are using Windows, then parts of the project (such as file copying) may not work as expected.
All grades in a course are kept in a CSV spreadsheet. Grade_Alert_rs parses each row of the spreadsheet and all contents are formatted and placed into a separate markdown file which is named according to the first column of the spreadsheet. These files are then to be placed into grade book repositories (discussed below) and pushed for the student to access.
The Rust programming language is necessary to compile the code of this project to run.
To process the sample CSV spreadsheet, samples/demoGrades_short.csv
(files formats are discussed below), the following command must be used cargo run -- -i sampleData/demoGrades_short.csv
. This command will create a directory called 0_out/
and place the markdown files into this directory. The files are named according to the first column of the CSV file. For example, the file for student1
will be called student1_gradebook.md
.
Note: discussion for each of these commands is below.
GradeAlert works to copy grade book reports from the grade spreadsheet into GitHub repositories to be pushed. The students' repositories must first be created. It is recommended that a script be used to create pull the repository for each student in the class.
Assume that the ssh URLs for cloning grade book repository from GitHub are the following;
git clone [email protected]:CMPSC-305-Allegheny-College-Fall-2023/grade-book-student1.git
git clone [email protected]:CMPSC-305-Allegheny-College-Fall-2023/grade-book-student2.git
git clone [email protected]:CMPSC-305-Allegheny-College-Fall-2023/grade-book-student3.git
git clone [email protected]:CMPSC-305-Allegheny-College-Fall-2023/grade-book-student4.git
Place each git clone
line in a batch file repoBuilder.sh
to automate the cloning process
of these repositories.
A sample repoBuilder.sh
takes the following form.
git clone [email protected]:CMPSC-305-Allegheny-College-Fall-2023/grade-book-student1.git
git clone [email protected]:CMPSC-305-Allegheny-College-Fall-2023/grade-book-student2.git
git clone [email protected]:CMPSC-305-Allegheny-College-Fall-2023/grade-book-student3.git
git clone [email protected]:CMPSC-305-Allegheny-College-Fall-2023/grade-book-student4.git
mkdir student_repos
mv grade-book* student_repos/
Note that there is a bash line to move all cloned repositories into a created directory
called student_repos
.
To use this Grade_Alert_rs, the student grades are to be kept in a comma separated variable (CSV) file. Please note that no commas may be used in the fields of the CSV file as they will serve to confuse the true delimiters of the CSV structure and will prevent Grade_Alert_rs from opening the CSV files correctly.
In a grade book spreadsheet, each row contains the grades of the individuals in the course. The columns header provide details of the assignment and type of feedback. The first column must contain the name of the student; this information will be used to name the outputted files and serve to inform which output file corresponds with what grade book repository. The rest of the information for a row will be formatted and placed into the outputted file. The CSV formatting for a grade book CSV files is shown below in the table.
Student Name | Student ID | Activity 01 | Activity 01 Comments | Activity 02 | Activity 02 comments |
---|---|---|---|---|---|
student1 | x0001 | 100 | All requirements satisfied | 100 | excellent |
student2 | x0002 | 100 | Excellent | 100 | excellent |
student3 | x0003 | 100 | Excellent | 100 | excellent |
student4 | x0004 | 0 | Nothing submitted | 95 | excellent |
student5 | x0005 | 100 | Excellent | 95 | ok |
student6 | x0006 | 100 | Excellent | 100 | excellent |
student7 | x0007 | 0 | Nothing submitted | 0 | nothing submitted? |
After running the Grade_Alert_rs tool on a CSV file containing the information of the above
table, a file for each row is outputted. For example, the report of student1
will take
the following form.
File: student1_gradebook.md
Student Name : student1
Student ID : x0001
Activity 01 : 100
Activity 01 Comments : All requirements satisfied
Activity 02 : 100
Activity 02 comments : excellent
____
Each prepared file is then to be placed into its associated grade book repository and is pushed out for the student.
Using option -P
, the user can have Grade_Alert_rs copy the gradebook markdown files into
their associated repositories for bulk pushing (discussed below).
./gradeAlert.py -P
For this step, the File pairings.txt
must be in the same directory as the gradeAlert.py
.
The pairing file lists the files (left) separated by a comma, and the repositories
(right) into which the file is to be copied before pushing. Shown below are the contents
of pairings.txt
for the accompanying gradebook spreadsheet example.
student1_gradebook.md,student_repos/grade-book-student1/
student2_gradebook.md,student_repos/grade-book-student2/
student3_gradebook.md,student_repos/grade-book-student3/
student4_gradebook.md,student_repos/grade-book-student4/
student5_gradebook.md,student_repos/grade-book-student5/
student6_gradebook.md,student_repos/grade-book-student6/
student7_gradebook.md,student_repos/grade-book-student7/
After running gradeAlert
on a CSV
file, you can create an instant listing of grade book files
which are placed in pairings.txt
. Please use the following bash command for this task.
ls -l | cut -d " " -f 11 | sort | uniq > pairings.txt
Note: Be sure to remove all spaces in the pairings.txt
file.
For his or her own requirements, the user is to modify this file, which is essentially a csv
file that could be created by a spreadsheet such as LibreOffice
Calc. If the pairing file is not present when the option -P
is invoked, then an error message
will result and end the Grade_Alert_rs execution.
The output for the command cargo run -- -i sampleData/demoGrades_short.csv
is shown below.
Package name: 'grade_alert_rs2'.
Package version: '0.1.0'.
Package edition: '2024'.
Headers: StringRecord(["Student Name", "Student ID", "Activity 01", "Activity 01 Comments", "Activity 02", "Activity 02 comments", "Activity 03", "Activity 03 comments"])
Copied file 0_out/student1.md to studentGradeBook_Repos/gradebook_A/student1.md
Copied file 0_out/student2.md to studentGradeBook_Repos/gradebook_B/student2.md
Copied file 0_out/student3.md to studentGradeBook_Repos/gradebook_C/student3.md
Copied file 0_out/student4.md to studentGradeBook_Repos/gradebook_D/student4.md
Directory does not exist: studentGradeBook_Repos/gradebook_E/.
File 0_out/student5.md was not copied.
Copied file 0_out/student6.md to studentGradeBook_Repos/gradebook_F/student6.md
Copied file 0_out/student7.md to studentGradeBook_Repos/gradebook_G/student7.md
Copied file 0_out/student7.md to studentGradeBook_Repos/x_gradebook_G/student7.md
Note that a new file, 0_out/dirNames.txt
will be created from this copying operation, shown below.
student_repos/grade-book-student1/
student_repos/grade-book-student2/
student_repos/grade-book-student3/
student_repos/grade-book-student4/
student_repos/grade-book-student5/
student_repos/grade-book-student6/
student_repos/grade-book-student7/
The dirNames.txt
file may be used with the bulkPusher.sh
script (explained below) for bulk pushing
using git
. We note that this file is especially useful since it only lists the successful copies
of gradebook files into corresponding repositories. If an error occurred during copying, then the
program would skip the repository and the dirNames
would have no listing for the offending
repository.
Each student who has accepted the grade book "assignment" will have a repository that the instructor an access. Sadly, the GitHub Assistant (link: https://classroom.github.com/assistant) will not work to create repositories into which grades may be pushed. Instead, the instructor is to clone each of the grade book "assignment" repositories listed by GitHub Classroom and then copy the individual gradebook files into each repository.
The creation of multiple gradebook repositories may be done by adding the git clone
statements
into a script file such as the included file, repoBuilder.sh
and then running the script using,
sh repoBuilder.sh
. The user is advised to edit this script file as necessary -- there are two
lines that have been added create a directory called student_repos/
and then to copy in all
repositories starting with gradebook_
into the directory.
Grade book repositories may now be pushed by the instructor using the below bulkPusher.sh
script.
After completing course grades save a copy of the spreadsheet as a CSV file. Grader-Alert may be executed with the CSV file as the parameter. The resulting files will have to be placed into the individual grade book repositories.
To facilitate the pushing of all these repositories, the below script
(located in src/bulkPusher.sh
) may be be used. To execute this script in Linux and MacOS, use
the command, sh bulkPusher.sh
when the files have been copied into the grade book repositories.
# Bulk Pusher script.
# Date: 24 April 2025
# Oliver Bonham-Carter, [email protected]
# This script uses the File, dirNames.txt, to locate repositories to push
# The current date is printed in the commit message of the submit
# A file, "0_thisLastPush.txt" is created to state when the last bulk push was completed.
NOW=`date`
printf "Current date and time in Linux is: $NOW"
date > 0_thisLastPush.txt
pwd > mydir
for z in `cat mydir`; do cd $z; done
for DIRNAME in $(cat dirNames.txt)
do
cd $DIRNAME
echo Checking: $DIRNAME
git add -A
git commit -m "Grade update: $NOW"
git push
cd $z/
done
rm mydir
The file, dirNames.txt
contains the paths of the repositories to which we push. To conveniently
prepare this file, begin with the following command from the directory where the class
repositories are stored.
ls > dirNames.txt
This file is to be edited to contain only the paths to the student grade book repositories. This
file is then to be stored in the same root as the repositories so that the bulkPushers.sh
can
find it (and the repository paths it contains) when run.
The contents of the student repositories directory should be similar to the following.
repos/gradebook-student1
repos/gradebook-student2
...
repos/dirNames.txt
repos/bulkPusher.sh
In a convenient setup, the repositories, the files dirNames.txt
and bulkPusher.sh
are to stored
in root directory. The structure of the file system is discussed below.
The files are to be arranged in the following way for a typical usage. Note, this arrangement shows the demonstration files.
./0_out/
- dirNames.txt # this may need to be placed in the root directory
- student1_gradebook.md
- student2_gradebook.md
- student3_gradebook.md
- student4_gradebook.md
- student5_gradebook.md
- student6_gradebook.md
- student7_gradebook.md
./student_repos/
- grade-book-student1/
- grade-book-student2/
- grade-book-student3/
- grade-book-student4/
- grade-book-student5/
- grade-book-student6/
- grade-book-student7/
./
- bulkPusher.sh
- demoGrades_short.csv
- gradeAlert.py
- pairings.txt
Note: As the user uses Grade_Alert_rs to handle gradebook repositories and markdown files, having the files in the above order will help to simplify the commands to use them.
Check back often to see the evolution of this project!! Grade_Alert_rs is a work-in-progress. Updates are likely to come soon with feedback. If you would like to contribute to this project, then please do! For instance, if you see some low-hanging fruit or task that you could easily complete, that could add value to the project, then I would love to have your insight.
Otherwise, please create an Issue for bugs or errors. Since I am a teaching faculty member at Allegheny College, I may not have all the time necessary to quickly fix the bugs and so I would be very happy to have any help that I can get from the OpenSource community for any technological insight. Much thanks in advance. I hope that this project helps you to conveniently publish your course grades.
If you appreciate this project and would like to follow it, then please consider clicking the project's Star button. :-)