Python Excel to Json
Project description
python_excel2json
A simple way to parse an excel file and get the json that you want.
Install
pip install python_excel2json
Dependencies
xlrd
Usage
from python_excel2json import parse_excel_to_json
# Step 1: Define the format of your excel that you want to parse.
excel_sheets_format = {
'start_row_sheet_parsing': 1,
'start_column_sheet_parsing': 0,
'sheet_formats': [
{
'sheet_index': 0,
'column_names': [
{
'name': 'name1',
'type': 'str'
},
{
'name': 'name2',
'type': 'str'
},
{
'name': 'name3',
'type': 'str'
},
{
'name': 'name4',
'type': 'float'
}
],
'is_ordered': True
},
{
'sheet_index': 1,
'column_names': [
{
'name': 'name1',
'type': 'str'
},
{
'name': 'name2',
'type': 'str'
},
{
'name': 'name3',
'type': 'str'
},
{
'name': 'name4',
'type': 'float'
}
],
'is_ordered': True,
'start_row_sheet_parsing': 3,
'start_column_sheet_parsing': 5
}
]
}
# Step 2: Define your excel file input. Using 'xlrd' it can be from two ways:
file = '/my/path/my-file.xlsx'
result = parse_excel_to_json(excel_sheets_format, filename=file)
file = your-excel-content
result = parse_excel_to_json(excel_sheets_format, file_contents=file)
# Step 3: Obtain your specific json result.
[
{
'sheet_index': 0,
'results': [
{
'name1': 'value',
'name2': 'value',
'name3': 'value'
},
...
]
},
{
'sheet_index': 1,
'results': [
{
'name1': 'value',
'name2': 'value',
'name3': 'value',
'name4': 'value'
},
...
]
}
]
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file python_excel2json-0.2-py3-none-any.whl
.
File metadata
- Download URL: python_excel2json-0.2-py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8e70e0a20bc336ddaa8ef2c33afe40bac40eaff20fba4bf2c9ac3616e56754f5 |
|
MD5 | 600abcde21265165ba658b9b91ca0d58 |
|
BLAKE2b-256 | c225a132bdabeeef51f5322e0dd9ee0155fc589a5c2b1527748545320d7cc32e |