-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: csv support for conversion to json
Adds support for converting csv to json
- Loading branch information
Showing
53 changed files
with
75,386 additions
and
267 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -163,4 +163,5 @@ pyrightconfig.json | |
.debugpy | ||
|
||
# docs build directory | ||
book | ||
book | ||
docs/LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
name,age,text_editor | ||
John,30,Sublime Text | ||
Jane,25,Visual Studio Code | ||
Michael,35,Neovim | ||
Noah,40,Atom |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"John": { | ||
"age": "30", | ||
"text_editor": "Sublime Text" | ||
}, | ||
"Jane": { | ||
"age": "25", | ||
"text_editor": "Visual Studio Code" | ||
}, | ||
"Michael": { | ||
"age": "35", | ||
"text_editor": "Neovim" | ||
}, | ||
"Noah": { | ||
"age": "40", | ||
"text_editor": "Atom" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"John": { | ||
"age": "30", | ||
"text_editor": "Sublime Text", | ||
"invalid_key": "invalid_value" | ||
}, | ||
"Jane": { | ||
"age": "25", | ||
"text_editor": "Visual Studio Code", | ||
"place_of_birth": "New York" | ||
}, | ||
"Michael": { | ||
"age": "35", | ||
"text_editor": "Neovim", | ||
"job": "Software Engineer" | ||
}, | ||
"Noah": { | ||
"age": "40", | ||
"text_editor": "Atom", | ||
"favorite_color": "Blue" | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.