Skip to content

Latest commit

 

History

History
43 lines (38 loc) · 1.48 KB

README.md

File metadata and controls

43 lines (38 loc) · 1.48 KB

CSV2JSON

Suite à un défit lancé sur twitter, il était demandé de réaliser une commande pour faire de la conversion CSV en JSON. Voici ce qui avait été proposé : https://gist.github.com/f2r/2f1e1fa27186ac670c21d8a0303aabf1

Ci dessous, des personnes qui ont relevées le challenge (si vous souhaitez, vous pouvez proposer d'autres versions) :

Ici, un exemple de fichier CSV un peu spécial :

 id | name   | value   | date
 1  | foo    | 5998772 | 2020-03-04
 2  | bar    | 5657102 | 2020-03-04
 3  | foobar |         | 2020-03-04
 4  | foobaz | 6657512 | 2020-03-04
 5  | bazfoo | 5587445 | 2020-03-04
 6  | barfoo | 1124587 | 2020-03-05
 7  | foofoo |         | 2020-03-05
 8  | bazbar | 8921863 | 2020-03-05
 9  | bazbaz | null    | 2020-03-05
 10 | barbar | 5586311 | 2020-03-05
 11 | barbaz | 5566488 | 2020-03-05

Et un fichier de mapping :

id    = integer
name  = string
############################
value = ?integer # ce champ est nullable
#########################
date  = date