- 여러 엑셀 파일을 하나로 자동 통합 - 원본 파일명 추적 기능 - 에러 처리 및 진행 상황 표시 - 샘플 데이터 생성 스크립트 포함 Features: - Support .xlsx, .xls, .xlsm files - Automatic timestamp in output filename - Error handling for corrupted files - Real-time progress display
34 lines
317 B
Plaintext
34 lines
317 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
ENV/
|
|
.venv
|
|
|
|
# 데이터 파일
|
|
input/*.xlsx
|
|
input/*.xls
|
|
input/*.xlsm
|
|
output/*.xlsx
|
|
output/*.xls
|
|
output/*.xlsm
|
|
|
|
# 폴더는 유지하되 내용물 제외
|
|
!input/.gitkeep
|
|
!output/.gitkeep
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|