Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gkaszewski/dictionary-generator
A tool that generates JSON file from CSV and manages data for my game. Written in C#
https://github.com/gkaszewski/dictionary-generator
csharp
Last synced: 8 days ago
JSON representation
A tool that generates JSON file from CSV and manages data for my game. Written in C#
- Host: GitHub
- URL: https://github.com/gkaszewski/dictionary-generator
- Owner: GKaszewski
- Created: 2019-04-14T15:55:40.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-21T17:23:06.000Z (almost 2 years ago)
- Last Synced: 2023-03-03T12:36:29.683Z (over 1 year ago)
- Topics: csharp
- Language: C#
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dictionary generator
Simple tool for my game which converts csv data table to JSON file.![](https://user-images.githubusercontent.com/42281413/99908818-12d4c900-2ce5-11eb-9bb7-1fdb81f9b73b.png)
![](https://user-images.githubusercontent.com/42281413/99908882-8f67a780-2ce5-11eb-8b01-119b10c2ee76.png)
## Structure of CSV file
| Spanish| English |
|--|--|
| álgebra | algebra |
| arte| art|**Note**
The file does not actually have headers 'Spanish' and 'English'.## JSON file
```json
[
{
"Spanish": "álgebra",
"English": "algebra"
},
{
"Spanish": "arte",
"English": "art"
}
]
```## Third party packages
[Newtonsoft JSON](https://www.newtonsoft.com/json)