Spaces:
Sleeping
Sleeping
A newer version of the Gradio SDK is available: 6.18.0
metadata
title: JSON/CSV Converter
sdk: gradio
app_port: 7860
๐ JSON/CSV Converter
Convert between JSON and CSV formats with customizable options.
Features
- JSON to CSV - Convert JSON objects/arrays to CSV format
- CSV to JSON - Convert CSV data to JSON objects
- Custom Delimiters - Support for comma, semicolon, tab, pipe
- Custom Quotes - Choose quote characters for CSV
- Type Preservation - Automatically detects numbers, booleans, strings
- Nested Objects - Handles complex JSON structures
How to Use
JSON to CSV
- Paste your JSON data
- Choose delimiter and quote character
- Click "Convert to CSV"
- Copy the CSV output
CSV to JSON
- Paste your CSV data
- Choose delimiter
- Set if first row is header
- Click "Convert to JSON"
- Copy the JSON output
Example
JSON Input
[
{"name": "John", "age": 30, "city": "New York"},
{"name": "Jane", "age": 25, "city": "Boston"}
]
CSV Output
name,age,city
John,30,New York
Jane,25,Boston
Built With
- Gradio - For the interactive UI
- Python - For the backend logic
- HuggingFace Spaces - For free hosting
License
MIT License - Free for personal and commercial use.
Built by AI, tested by humans