Git Product home page Git Product logo

csv-to-json-converter's Introduction

CSV-To-JSON-Converter

A little script to convert CSV Files to JSON in easy and flexible way using GoLang.

The Reason for this tool is i was in charge to convert a couple of csv files to JSON and i didn't find simple thing give me exactly what i expect from such a tool, and i looked for golang examples but i found most of it using struct for single case, so i built this to be flexible enough for any file.

How to use this tool:

  • After Downloading the go file you can run go run main.go -path=C:\\TheFile.csv or go run main.go -path C:\\TheFile.csv or after getting the executable file myfile.exe -path=C:\\TheFile.csv
  • you will have a new file in the same root as the csv one but with JSON extension.

Example:

If i have a csv file contains a people data people.csv:

Id,Name,Age
1,Ahmad,21
2,Ali,50

and we need to convert it to json file:

go run main.go -path=C:\Users\User\Desktop\data\src\people.csv

after writing this command you will get another file in the same directory called people.json with the data in the new format:

[
  {
    "Id": 1,
    "Name": "Ahmad",
    "Age": 21
  },
  {
    "Id": 2,
    "Name": "Ali",
    "Age": 50
  }
]

and that's it.

License:

The MIT License

csv-to-json-converter's People

Contributors

ahmagdy avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.