more linux compatible good practice stuff?

This commit is contained in:
SowinskiBraeden committed 2022-10-26 10:15:42 -07:00
1 parent 337dbac2db
commit bf09b095f3
7 files changed
+34 -23

No files matched your search

Regular → Executable
+11 -8
View File
@@ -1,12 +1,6 @@
#!/usr/bin/env python
#!/usr/bin/env python3.11
import json
# Get students
try:
with open("../output/students.json", 'r') as studentFile: students = json.load(studentFile)
except FileNotFoundError:
with open("./output/students.json", 'r') as studentFile: students = json.load(studentFile)
flex = ("XAT--12A-S", "XAT--12B-S")
most_frequent = lambda l : max(set(l), key = l.count)
@@ -23,7 +17,13 @@ def getEstimatedGrade(pupil: dict) -> int:
return None if len(grades) == 0 else most_frequent(grades) # Final estimate of grade
if __name__ == '__main__':
def main():
# Get students
try:
with open("../output/students.json", 'r') as studentFile: students = json.load(studentFile)
except FileNotFoundError:
with open("./output/students.json", 'r') as studentFile: students = json.load(studentFile)
# Define students grade level
for student in students:
student["gradelevel"] = getEstimatedGrade(student)
@@ -33,3 +33,6 @@ if __name__ == '__main__':
except FileNotFoundError:
with open('./output/students/json', 'w') as studnetFile:
json.dump(students, studentFile, indent=2)
if __name__ == '__main__':
main()