Structured JSON is great for machines and miserable for the people who have to read it. json2sheet is a lightweight Python utility I built to convert structured JSON into clean, well-formatted Excel (.xlsx) and CSV files — so logs, exports, and API responses become something a non-developer can actually open and analyze.
The approach: a flexible converter that handles nested and irregular structures, preserves column order, and outputs both spreadsheet formats from a single command, with sensible handling of the messy real-world data that breaks naive converters.
The outcome is a small tool that removes a recurring friction point — turning raw data into shareable spreadsheets in one step. It is the kind of pragmatic automation I write to save teams repetitive manual work.
Stack: Python, JSON, openpyxl, CSV, data transformation. Code is public on GitHub.