Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CSV to JSON/XML #1427

Open
gotenksnull opened this issue Oct 25, 2024 · 0 comments
Open

CSV to JSON/XML #1427

gotenksnull opened this issue Oct 25, 2024 · 0 comments
Labels
feature Feature / Tool request or idea untriaged

Comments

@gotenksnull
Copy link

What feature or new tool do you think should be added to DevToys?

A simple CSV to JSON/XML

Why do you think this is needed?

as a game developer, often game designers/balancers/level designers will use spreadsheets to organize their data, sometimes it would be nice to just convert a .csv into .json

Solution/Idea

field0,field1,field2,field3,field4
0,1,2,3,4
10,11,12,13,14

[
{
"field0": 0,
"field1": 1,
"field2": 2,
"field3": 3,
"field4": 4
},
{
"field0": 10,
"field1": 11,
"field2": 12,
"field3": 13,
"field4": 14
}
]

Comments

No response

@gotenksnull gotenksnull added feature Feature / Tool request or idea untriaged labels Oct 25, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature Feature / Tool request or idea untriaged
Projects
None yet
Development

No branches or pull requests

1 participant