# excel-dify-plugin **Repository Path**: cracky/excel-dify-plugin ## Basic Information - **Project Name**: excel-dify-plugin - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-06-26 - **Last Updated**: 2025-06-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Excel ↔ Json Converter **Author:** qiangxinglin **Version:** 0.0.1 **Type:** tool **Repository** https://github.com/qiangxinglin/excel-dify-plugin ## Description The built-in `Doc Extractor` would convert input `.xlsx` file to markdown table **string** for downstream nodes (e.g. LLM). But this does not cover all situations! This plugin provides 2 tools: - `xlsx → json`: Read the Excel file and output the Json presentation of the data. - `json → xlsx`: Convert the given json string (list of records) to xlsx blob. ## Usage ![](_assets/workflow_usage.png) ## Tools ### xlsx → json - The output is placed in the `text` output field rather than the `json` field in order to preserving the header order. - All cells are parsed as **string**, no matter what it is. | Name | Age | Date | |------|-----|------| | John | 18 |2020/2/20| | Doe | 20 |2020/2/2| ![](_assets/e2j_output.png) ### json → xlsx - The output filename can be configured, default `Converted_Data` ![](_assets/workflow_run.png) ![](_assets/output_xlsx.png) ## Used Open sourced projects - [pandas](https://github.com/pandas-dev/pandas), BSD 3-Clause License ## License - Apache License 2.0 ## Privacy This plugin collects no data. All the file transformations are completed locally. NO data is transmitted to third-party services.