A simple Python application to convert JSON data from a .txt
file into an Excel file. This app uses a GUI to allow users to select the input and output file paths.
- Python 3.x
pandas
Install the required dependencies:
pip install -r requirements.txt
Run the application with:
python main.py
Select the input JSON .txt
file and specify the output .xlsx
file location. The data will be converted and saved as an Excel file.
converter.py
: Handles data extraction and conversion to Excel.file_selector.py
: Provides file selection and saving functions.gui.py
: Manages the GUI and interactions.main.py
: Entry point to run the application.