Initial commit: Excel Data Merger RPA

- 여러 엑셀 파일을 하나로 자동 통합
- 원본 파일명 추적 기능
- 에러 처리 및 진행 상황 표시
- 샘플 데이터 생성 스크립트 포함

Features:
- Support .xlsx, .xls, .xlsm files
- Automatic timestamp in output filename
- Error handling for corrupted files
- Real-time progress display
This commit is contained in:
2026-02-10 03:17:58 +09:00
commit 2196014462
7 changed files with 469 additions and 0 deletions

33
.gitignore vendored Normal file
View File

@@ -0,0 +1,33 @@
# 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