Update file paths to use relative references for project and scoring JSON files

This commit is contained in:
2025-01-22 13:40:18 +09:00
parent 9b29147f94
commit e275d0d788

View File

@@ -2,8 +2,8 @@ from jsonpath_ng.ext import parse
import json import json
# 파일 경로 설정 # 파일 경로 설정
project_json_path = '/Users/waterdrw/Works/KAIT/Entry-Scoring/sample/제2410회 코딩활용능력 2급 B형 정답/project.json' project_json_path = './sample/제2410회 코딩활용능력 2급 B형 정답/project.json'
scoring_json_path = '/Users/waterdrw/Works/KAIT/Entry-Scoring/scoring.json' scoring_json_path = './scoring.json'
# JSON 파일 읽기 # JSON 파일 읽기
def read_json(file_path): def read_json(file_path):