https://github.com/schiste/excel-merger-macos
A small local Python script that merge two Excel together with a very light interface to pick the two files to merge.
https://github.com/schiste/excel-merger-macos
Last synced: 6 days ago
JSON representation
A small local Python script that merge two Excel together with a very light interface to pick the two files to merge.
- Host: GitHub
- URL: https://github.com/schiste/excel-merger-macos
- Owner: schiste
- License: cc0-1.0
- Created: 2025-05-13T15:22:48.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-13T15:23:46.000Z (about 1 year ago)
- Last Synced: 2025-05-13T16:41:21.193Z (about 1 year ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Excel Sheet Merger
A simple Python tool with a file dialog interface to merge all sheets from two `.xlsx` files into a single workbook.
## Features
- Select two Excel files via UI
- Copies all sheets from both files into one output
- Automatically renames sheets to avoid name collisions
- Outputs a new `merged.xlsx` file
- Console logs for progress visibility
## Requirements
- Python 3.7+
- Packages:
- `pandas`
- `openpyxl`
- `tkinter` (pre-installed on macOS)
Install required packages:
```bash
pip install pandas openpyxl