aboutsummaryrefslogtreecommitdiff
path: root/toBlackboardCSV.py
diff options
context:
space:
mode:
Diffstat (limited to 'toBlackboardCSV.py')
-rwxr-xr-xtoBlackboardCSV.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/toBlackboardCSV.py b/toBlackboardCSV.py
index 250da74..7837ea7 100755
--- a/toBlackboardCSV.py
+++ b/toBlackboardCSV.py
@@ -27,4 +27,7 @@ dOut = dOut.loc[ dOut['GroupName'].isin(['student']) ]
infoCol=['FirstName', 'LastName', 'GroupName', 'UserHiddenColums', 'UserHiddenGroups', 'UserHiddenGradeCategories', 'SectionNum', 'IdNum']
dOut = dOut.drop(infoCol, axis=1)
+fout = 'BlackBoard.csv'
dOut.to_csv('BlackBoard.csv', index=False)
+print(f'Data was exported to {fout}')
+