2509회 채점자료 업데이트

This commit is contained in:
2025-10-01 17:32:30 +09:00
parent b2f99b92d0
commit 99250cd161
9 changed files with 935 additions and 8 deletions

View File

@@ -234,8 +234,8 @@ def main():
timestamp = datetime.now().strftime("%y%m%d")
test_mode = False # 테스트 모드 설정
# test_mode = True # 테스트 모드 설정
exam_round = "2508"
exam_names = ["CAS_2_A", "CAS_2_B"] # 여러 시험명을 리스트로 설정
exam_round = "2509"
exam_names = ["CAT_3_A"] # 여러 시험명을 리스트로 설정
excel_list = []
for exam_name in exam_names:
@@ -276,7 +276,7 @@ def main():
for file in sorted(files): # 파일도 정렬
if file == 'project.json':
full_path = os.path.join(root, file)
print(f"\nProcessing: {full_path}")
print(f"\n🟠 Processing: {full_path}")
try:
# 디렉토리 패스 내에 학생 이름만 뽑아서 엑셀 컬럼 명으로 추가
match = re.search(r'(\d{6}[-_][^\\/]+)[\\/]', full_path)