https://github.com/omari-kd/excel-to-json
A simple, efficient tool to convert Excel files (.xlsx, .xls) to JSON format.
https://github.com/omari-kd/excel-to-json
excel json json-converter python
Last synced: 10 months ago
JSON representation
A simple, efficient tool to convert Excel files (.xlsx, .xls) to JSON format.
- Host: GitHub
- URL: https://github.com/omari-kd/excel-to-json
- Owner: omari-kd
- Created: 2025-03-21T10:56:35.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-03-21T11:13:22.000Z (10 months ago)
- Last Synced: 2025-03-21T12:23:59.204Z (10 months ago)
- Topics: excel, json, json-converter, python
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Excel to JSON Converter
A simple, efficient tool to convert Excel files (.xlsx, .xls) to JSON format.
Features
- Convert Excel spreadsheets to JSON with a single function call
- Support for multiple worksheets
- Customizable JSON output format
- Simple API for easy integration into existing projects
- Handles large files efficiently
# Installation
Clone the repository
git clone https://github.com/omari-kd/Excel-to-JSON.git
cd excel-to-json
# Install dependencies
pip install -r requirements.txt
# Dependencies
- pandas
- openpyxl
# Usage
## Basic Conversion
from excel_converter import excel_to_json
Convert Excel file to JSON
json_data = excel_to_json('path/to/your/file.xlsx')
Save to file
excel_to_json('path/to/your/file.xlsx', output_json_path='output.json')