Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/takana671/jsonexcel
Export JSON-format data to Excel like RDB or the exported data in Excel to JSON file.
https://github.com/takana671/jsonexcel
excel json json-excel json-export openpyxl tkinter tkinter-gui tkinter-python xlsxwriter
Last synced: 5 days ago
JSON representation
Export JSON-format data to Excel like RDB or the exported data in Excel to JSON file.
- Host: GitHub
- URL: https://github.com/takana671/jsonexcel
- Owner: taKana671
- License: mit
- Created: 2020-05-16T13:55:44.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-10T13:00:06.000Z (about 4 years ago)
- Last Synced: 2023-03-05T22:55:45.356Z (almost 2 years ago)
- Topics: excel, json, json-excel, json-export, openpyxl, tkinter, tkinter-gui, tkinter-python, xlsxwriter
- Language: Python
- Homepage:
- Size: 2.18 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JsonExcel
Export JSON-format data to Excel like RDB or the exported data in Excel to JSON file.
![spec](https://user-images.githubusercontent.com/48859041/101023648-67febd80-35b6-11eb-9e06-b6146aef7c04.png)
# Requirements
* Python 3.8
* openpyxl
* xlsxwriter# Environment
* Windows10
* Excel 2016# Usage
### *class* ToExcel(path)
* Export JSON-format data to Excel like RDB
```bash
from jsonexcel import ToExcel
to_excel = ToExcel(path) # path: JSON file path
to_excel.convert() # When export all data
to_excel.partial_convert(column name 1, column name 2, ...) # When export selected data
# if json_data is {'aa': 1, 'bb': {'cc': 2, 'dd': [1, 2, 3, 4]}},
# column name is like 'aa', 'bb.cc', 'bb.dd'.
```
### *class* FromExcel(path)
* Export data in Excel to JSON file.
* The Excel must be the file output with convert method of ToExcel class.
```bash
from jsonexcel import FromExcel
from_excel = FromExcel(path) # path: Excel file path
from_excel.convert() # Export data to JSON file
from_excel.convert(
indent=4, # If you need indent on JSON file, specify number.
replacement={'apps.app_id': 'app-id, 'price': 'prices'} # If you need to change key name, specify dict {compressed key: edited last_level key}.
)
```# Note
* If hyphens(-) or dots(.) are found in keys in a JSON file, they are replaced with underbar(\_) before exported to an Excel file.
* When exporting data in Excel to JSON file, specify argument(replacement) if you want to change keys in which hyphens or dots were replaced with underbar.# Converter Tool
![converter_demo](https://user-images.githubusercontent.com/48859041/102998457-8713be00-456a-11eb-8899-10b9f3399c22.gif)
```bash
>>>python converter.py
```### Export JSON-format data to Excel
1. Select [ToExcel] tab.
2. Click [Open] button to select a JSON file.
3. If you need, click keys in the listbox to select data to be exported.
* If you want to cancel the selection, click the [Deselect] button.
* If [Deselect] button is clicked, all the selected keys are canceled.
4. Click [Convert] button.
### Export data in Excel to JSON file
1. Select [FromExcel] tab.
2. Click [Open] button to select an Excel file.
3. If you need, edit keys.
* Click a key you want to edit in the left listbox.
* The key you clicked is entered into the right textbox.
* Edit the key and click [OK] button.
* If [OK] button is clicked, the edited key is moved into the right listbox.
* If you want to cancel the edit, select the edited key in the right listbox and click [Deselect] button.
4. Click [Convert] button.