https://github.com/jusexton/excel-chunk
Python script used to chunk or batch large excel worksheets into many smaller files.
https://github.com/jusexton/excel-chunk
Last synced: 10 months ago
JSON representation
Python script used to chunk or batch large excel worksheets into many smaller files.
- Host: GitHub
- URL: https://github.com/jusexton/excel-chunk
- Owner: jusexton
- Created: 2023-04-07T01:08:47.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-29T05:19:02.000Z (over 2 years ago)
- Last Synced: 2024-01-29T07:06:42.371Z (over 2 years ago)
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Excel Chunk
Python script used to chunk or batch large excel worksheets into many smaller files.
## How It Works
Execute the script with the below:
`python main.py --file=filemame --sheet-name=sheetname --chunk-size=100`
Specify the file that should be read, the worksheet that should be chunked and a chunk size (default 1000).
The result, a chunk folder is created and your chunked files under it.
## Usage
1. Install dependencies `pip install -r requirements.txt`. (Optionally within a venv)
2. Place the file that needs to be chunked in this directly.
3. Execute the following: `python main.py --file=filemame --sheet-name=sheetname --chunk-size=100`